-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
45 lines (44 loc) · 1.12 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
setup(
name="tarrow",
version="0.2.0",
description="Time Arrow Pretraining",
long_description_content_type="text/markdown",
author="Benjamin Gallusser, Max Stieber, Martin Weigert",
author_email="[email protected]",
license="BSD 3-Clause License",
packages=find_packages(),
python_requires=">=3.8",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.8",
],
install_requires=[
"numpy",
"scipy",
"tqdm",
"scikit-image",
"torch",
"torchvision>=0.13",
"pyyaml",
"matplotlib",
"configargparse",
"pyyaml",
"tensorboard",
"pre-commit",
"black",
"imagecodecs",
"tifffile",
"imageio>=2.19",
"pandas",
"dill",
"scikit-learn",
"gitpython",
"cython",
"numba",
"requests",
],
)