forked from samuel/python-erlastic
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (30 loc) · 971 Bytes
/
setup.py
File metadata and controls
executable file
·33 lines (30 loc) · 971 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
27
28
29
30
31
32
33
#!/usr/bin/env python
import setuptools
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
with open('README.rst', 'w') as f:
f.write(long_description)
except(IOError, ImportError):
with open('README.md') as f:
long_description = f.read()
setuptools.setup(
name = 'basho-erlastic',
version = '2.1.1',
description = 'Erlastic',
long_description=long_description,
author = 'Samuel Stauffer, Basho Technologies',
author_email = 'clients@basho.com',
url = 'https://github.com/basho/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',
],
)