-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 775 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 775 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
from setuptools import setup
setup(
name='jade',
version='0.1.0',
description='Just Another DEep learning framework',
python_requires='>=3',
url='https://github.com/mfederici/JADE',
author='Marco Federici',
author_email='m.federici@uva.nl',
license='MIT',
packages=['jade','jade/run_manager'],
scripts=['bin/jade'],
install_requires=['torch>=1.0',
'torchvision',
'torchaudio',
'numpy',
'envyaml',
'future',
'python-dotenv',
'tqdm',
'matplotlib',
'wandb'],
classifiers=[
'Programming Language :: Python :: 3.4',
],
)