-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 986 Bytes
/
setup.py
File metadata and controls
42 lines (39 loc) · 986 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
35
36
37
38
39
40
41
42
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
test_deps = [
'coverage',
'pytest',
'scikit-learn'
]
extras = {
'test': test_deps,
}
setuptools.setup(
name="interpret-pytorch",
version="0.2.1",
author="Thomas Tumiel",
description="Interpreting deep learning models in PyTorch.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ttumiel/interpret",
packages=setuptools.find_packages(),
install_requires=[
'numpy',
'matplotlib',
'pandas',
'Pillow',
'tqdm',
'torchvision',
'torch'
],
tests_require=test_deps,
extras_require=extras,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License"
],
python_requires='>=3.6',
)