-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 723 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 723 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
from setuptools import setup, find_packages
install_requires = [
'numpy',
'pytest',
'scipy',
'torch>=1.8.0',
'torchdiffeq==0.2.2',
'torchtyping==0.1.4',
]
with open('README.md', 'r') as f:
long_description = f.read()
setup(name='stribor',
version='0.2.0',
description='Library for normalizing flows and neural flows',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/mbilos/stribor',
author='Marin Bilos',
author_email='bilos@in.tum.de',
packages=find_packages(),
install_requires=install_requires,
python_requires='>=3.7',
zip_safe=False,
)