-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 1.17 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (32 loc) · 1.17 KB
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
34
35
36
37
from setuptools import setup
import io
req_file = open('requirements.txt')
reqs = req_file.read().strip().split('\n')
with io.open('README.md', encoding='utf-8') as f:
README = f.read()
setup_args = {
'description': 'Flask Cloudant Interface',
'long_description': README,
'include_package_data': True,
'install_requires': reqs,
'name': 'flask-cloudant',
'version': '0.0.1.dev',
'author': 'porthunt',
'author_email': 'jportela.gomez@gmail.com',
'url': 'https://github.com/porthunt/flask-cloudant',
'packages': ['flask_cloudant'],
'classifiers': [
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries :: Python Module',
'Operating System :: OS Independent',
'Development Status :: 1 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5'
]
}
setup(**setup_args)