forked from mateoespinosa/cem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 loc) · 1.39 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
46
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="protocbm",
version="0.1.0",
author="Linus Leong, Mateo Espinosa, and others",
author_email="[email protected]",
description="Prototype-based Concept Bottleneck Models",
long_description=long_description,
license='MIT',
long_description_content_type="text/markdown",
url="https://github.com/mateoespinosa/cem",
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
],
python_requires='>=3.7',
install_requires=[
"importlib-metadata>=4.8.2",
"importlib-resources>=5.4.0",
"ipykernel>=6.5.0",
"ipython-genutils>=0.2.0",
"ipython>=7.29.0",
"ipywidgets>=7.6.5",
"joblib>=1.1.0",
"matplotlib-inline>=0.1.3",
"matplotlib>=3.5.0",
"notebook>=6.4.5",
"numpy>=1.19.5",
"pytorch-lightning>=1.6.0",
"scikit-learn-extra>=0.2.0",
"scikit-learn>=1.0.1",
"seaborn>=0.11.2",
"torch>=1.11.0",
"torchmetrics>=0.6.2",
"torchvision>=0.12.0",
],
)