forked from MisaOgura/flashtorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.05 KB
/
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
34
35
36
37
38
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
version = '0.1.0'
setup(
name='flashtorch',
version=version,
author='Misa Ogura',
author_email='misa.ogura01@gmail.com',
description='Visualization toolkit for neural networks in PyTorch',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/MisaOgura/flashtorch',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
package_data={'flashtorch.utils.resources':
['imagenet_class_index.json']
},
install_requires=[
'matplotlib',
'numpy',
'Pillow',
'torch',
'torchvision',
'importlib_resources'
],
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)