-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.42 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.42 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
35
36
37
38
39
40
41
from setuptools import setup
from setuptools import find_packages
setup(name='PyJet',
version='0.0.1',
description='FrontEnd for PyTorch',
author='Abhijeet Mulgund',
author_email='abhmul@gmail.com',
url='https://github.com/abhmul/PyJet',
license='MIT',
install_requires=['numpy>=1.12.0',
'scipy>=0.19.1',
'Pillow>=3.1.2',
'torch>=0.4.0',
'torchvision>=0.1.8',
'matplotlib>=2.0.0',
'tqdm>=4.11.2',
'scikit-image'],
extras_require={
'h5py': ['h5py'],
'tests': ['pytest',
# 'pytest-pep8',
'pytest-xdist',
'coveralls',
'codecov',
'pytest-cov',
'python-coveralls'],
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages())