-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
33 lines (28 loc) · 868 Bytes
/
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
import os
from setuptools import find_packages, setup
install_requires = [
"argparse",
"matplotlib>=3.2.1",
"numpy>=1.18.4",
"POT>=0.7.0",
"scanpy",
"scikit-learn>=0.23.1",
"scipy>=1.4.1",
"torch>=1.5.0",
"torchdiffeq==0.0.1",
]
version_py = os.path.join(os.path.dirname(__file__), "TrajectoryNet", "version.py")
version = open(version_py).read().strip().split("=")[-1].replace('"', "").strip()
readme = open("README.rst").read()
setup(
name="TrajectoryNet",
packages=find_packages(),
install_requires=install_requires,
version=version,
description="A neural ode solution for imputing trajectories between pointclouds.",
author="Alexander Tong",
author_email="[email protected]",
license="MIT",
long_description=readme,
url="https://github.com/KrishnaswamyLab/TrajectoryNet",
)