-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (29 loc) · 907 Bytes
/
setup.py
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
from setuptools import setup, find_packages
__version__ = '0.1.0'
requires = [
'numpy>=1.13.1',
'pillow>=4.2.1',
]
pytorch_requires = ['torch']
setup(
name='tinyboard',
version=__version__,
description='Universal TensorBoard visualization library',
author='TinyMind',
author_email='[email protected]',
url='https://github.com/mind/tinyboard',
packages=find_packages(exclude=('tests', 'tests.*',)),
install_requires=requires,
extras_require={
'pytorch': pytorch_requires,
},
license='Apache 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
)