-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathsetup.py
31 lines (28 loc) · 1.23 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
from setuptools import setup
version_dict = {}
exec(open("./torchbearer/version.py").read(), version_dict)
import sys
if sys.version_info[0] >= 3:
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
else:
long_description = 'A model training library for pytorch'
setup(
name='torchbearer',
version=version_dict['__version__'],
packages=['torchbearer', 'torchbearer.metrics', 'torchbearer.callbacks', 'torchbearer.callbacks.imaging', 'tests', 'tests.metrics', 'tests.callbacks', 'tests.callbacks.imaging'],
url='https://github.com/pytorchbearer/torchbearer',
download_url='https://github.com/pytorchbearer/torchbearer/archive/' + version_dict['__version__'] + '.tar.gz',
classifiers=[
"License :: OSI Approved :: MIT License"
],
author='Matt Painter',
author_email='mp2u16@ecs.soton.ac.uk',
description='A model training library for pytorch',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=['torch>=1.0.0', 'numpy', 'tqdm'],
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
)