forked from samuel/python-erlastic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (23 loc) · 710 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (23 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
import setuptools
with open("README.md") as f:
long_description = f.read()
setuptools.setup(
name = 'python-erlastic',
version = '2.2.0',
description = 'Erlastic',
long_description=long_description,
author = 'Multiple',
url = 'http://github.com/skosch/python-erlastic',
packages = ['erlastic'],
install_requires=['six'],
requires=['six'],
test_suite='tests',
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)