-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.25 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.25 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
# coding: utf8
from setuptools import setup, find_packages
__author__ = 'Tharun Mathew Paul (tmpaul06@gmail.com)'
setup(
name='unklearn_python_runtime',
version='0.1',
description='Python runtime for Unklearn notebooks',
author='Tharun Mathew Paul',
author_email='tmpaul06@gmail.com',
license='MIT',
packages=find_packages('.', include=['core'], exclude=['**/tests/*.py']),
zip_safe=True,
project_urls={
"Source Code": "https://github.com/unklearn/python-runtime",
},
extras_require={
'testing': ['pytest', 'coverage', 'pytest-mock', 'pytest-asyncio'],
'development': ['yapf']
},
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
install_requires=['tornado', 'requests', 'flask-socketio', 'psutil'])