-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 1 KB
/
setup.py
File metadata and controls
37 lines (32 loc) · 1 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
with open('requirements.txt') as requirements:
requires = list(requirements)
setup_options = {
'name': 'plyvelmgr',
'version': '0.0.1',
'description': 'Plyvel cli tool',
'author': 'ICON Foundation',
'author_email': 'foo@icon.foundation',
'packages': find_packages(exclude=['tests*', 'docs']),
'include_package_data': True,
'py_modules': ['plyvelmgr'],
'license': "Apache License 2.0",
'install_requires': requires,
'test_suite': 'tests',
'entry_points': {
'console_scripts': [
'plyvelmgr=plyvelmgr:main'
],
},
'classifiers': [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6'
]
}
setup(**setup_options)