-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 783 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 783 Bytes
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
#!/usr/bin/env python
from setuptools import find_packages, setup
__version__ = '0.1.0'
requires = [
'clint==0.5.1',
'requests==2.14.2',
]
setup(
name='tinyenv',
version=__version__,
description='TinyMind runtime environment helpers',
author='TinyMind',
author_email='hello@tinymind.ai',
url='https://github.com/mind/tinyenv',
packages=find_packages(),
install_requires=requires,
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
)