-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
34 lines (28 loc) · 767 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
34
from setuptools import setup, find_packages
version = {}
with open("tint/__version__.py") as fp:
exec(fp.read(), version)
with open("README.md") as f:
readme = f.read()
setup(
name="time_interpret",
version=version["__version__"],
description="Time interpret package.",
long_description=readme,
author="Joseph Enguehard",
author_email="joseph@skippr.com",
url="https://github.com/josephenguehard/time_interpret",
python_requires=">=3.7",
install_requires=[
"captum",
"numpy",
"pandas",
"pytorch-lightning",
"scikit-learn",
"scipy",
"torch",
],
dependency_links=[],
include_package_data=True,
packages=find_packages(exclude=("tests", "docs")),
)