-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 777 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 777 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
29
30
31
32
33
34
from setuptools import setup, find_packages
install_requires = [
'numpy',
'pandas',
'matplotlib',
'scipy',
'sklearn',
'tqdm',
'stribor==0.1.0',
'torch>=1.8.0',
'torchvision',
'torchdiffeq',
'reverse_geocoder',
'lxml',
]
with open('README.md', 'r') as f:
long_description = f.read()
setup(name='nfe',
version='0.1.0',
description='Neural flows experiments',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/mbilos/neural-flows-experiments',
author='Marin Bilos',
author_email='bilos@in.tum.de',
packages=find_packages(),
install_requires=install_requires,
python_requires='>=3.6',
zip_safe=False,
)