-
Notifications
You must be signed in to change notification settings - Fork 130
/
setup.py
38 lines (32 loc) · 1.28 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
import setuptools
VERSION = "0.0.4"
with open("requirements.txt", "r") as f:
install_requires = f.readlines()
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="nbdt",
version=VERSION,
author="Alvin Wan", # TODO: proper way to list all paper authors?
description="Making decision trees competitive with state-of-the-art "
"neural networks on CIFAR10, CIFAR100, TinyImagenet200, "
"Imagenet. Transform any image classification neural network "
"into an interpretable neural-backed decision tree.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/alvinwan/neural-backed-decision-trees",
packages=setuptools.find_packages(),
install_requires=install_requires,
download_url="https://github.com/alvinwan/neural-backed-decision-trees/archive/%s.zip"
% VERSION,
scripts=["nbdt/bin/nbdt-hierarchy", "nbdt/bin/nbdt-wnids", "nbdt/bin/nbdt"],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.5",
include_package_data=True,
)