|
1 | 1 | # coding: utf8
|
2 | 2 | from setuptools import setup, find_packages
|
3 | 3 |
|
4 |
| - |
5 | 4 | __author__ = 'Tharun Mathew Paul ([email protected])'
|
6 | 5 |
|
7 |
| - |
8 |
| -setup(name='unklearn_python_runtime', |
9 |
| - version='0.1', |
10 |
| - description='Python runtime for Unklearn notebooks', |
11 |
| - author='Tharun Mathew Paul', |
12 |
| - |
13 |
| - license='MIT', |
14 |
| - packages=find_packages('.', include=['core'], exclude=['**/tests/*.py']), |
15 |
| - zip_safe=True, |
16 |
| - project_urls={ |
| 6 | +setup( |
| 7 | + name='unklearn_python_runtime', |
| 8 | + version='0.1', |
| 9 | + description='Python runtime for Unklearn notebooks', |
| 10 | + author='Tharun Mathew Paul', |
| 11 | + |
| 12 | + license='MIT', |
| 13 | + packages=find_packages('.', include=['core'], exclude=['**/tests/*.py']), |
| 14 | + zip_safe=True, |
| 15 | + project_urls={ |
17 | 16 | "Source Code": "https://github.com/unklearn/python-runtime",
|
18 |
| - }, |
19 |
| - extras_require={ |
20 |
| - 'testing': [ |
21 |
| - 'pytest', |
22 |
| - 'coverage', |
23 |
| - 'pytest-mock', |
24 |
| - 'pytest-asyncio' |
25 |
| - ], |
26 |
| - 'development': [ |
27 |
| - 'yapf' |
28 |
| - ] |
29 |
| - }, |
30 |
| - classifiers=[ |
| 17 | + }, |
| 18 | + extras_require={ |
| 19 | + 'testing': ['pytest', 'coverage', 'pytest-mock', 'pytest-asyncio'], |
| 20 | + 'development': ['yapf'] |
| 21 | + }, |
| 22 | + classifiers=[ |
31 | 23 | # Trove classifiers
|
32 | 24 | # Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
33 | 25 | 'License :: OSI Approved :: MIT License',
|
|
38 | 30 | 'Programming Language :: Python :: 3.5',
|
39 | 31 | 'Programming Language :: Python :: Implementation :: CPython',
|
40 | 32 | 'Programming Language :: Python :: Implementation :: PyPy'
|
41 |
| - ], |
42 |
| - install_requires=[ |
43 |
| - 'tornado', |
44 |
| - 'requests', |
45 |
| - 'flask-socketio' |
46 |
| - ]) |
47 |
| - |
| 33 | + ], |
| 34 | + install_requires=['tornado', 'requests', 'flask-socketio', 'psutil']) |
0 commit comments