Skip to content

Commit b420b7a

Browse files
committed
Add missing psutil dependency
1 parent 9c7b840 commit b420b7a

File tree

1 file changed

+18
-31
lines changed

1 file changed

+18
-31
lines changed

Diff for: setup.py

+18-31
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,25 @@
11
# coding: utf8
22
from setuptools import setup, find_packages
33

4-
54
__author__ = 'Tharun Mathew Paul ([email protected])'
65

7-
8-
setup(name='unklearn_python_runtime',
9-
version='0.1',
10-
description='Python runtime for Unklearn notebooks',
11-
author='Tharun Mathew Paul',
12-
author_email='[email protected]',
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+
author_email='[email protected]',
12+
license='MIT',
13+
packages=find_packages('.', include=['core'], exclude=['**/tests/*.py']),
14+
zip_safe=True,
15+
project_urls={
1716
"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=[
3123
# Trove classifiers
3224
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
3325
'License :: OSI Approved :: MIT License',
@@ -38,10 +30,5 @@
3830
'Programming Language :: Python :: 3.5',
3931
'Programming Language :: Python :: Implementation :: CPython',
4032
'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

Comments
 (0)