-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
51 lines (47 loc) · 1.62 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
47
48
49
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="cem",
version="1.1.0",
author="Mateo Espinosa Zarlenga, Pietro Barbiero, Gabriele Ciravegna, Giuseppe Marra, Francesco Giannini, Michelangelo Diligenti, Zohreh Shams, Frederic Precioso, Stefano Melacci, Adrian Weller, Pietro Lio, Mateja Jamnik",
author_email="[email protected]",
description="Concept Embedding Model",
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, <3.9',
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,<2.0.0",
"scikit-learn-extra>=0.2.0",
"scikit-learn>=1.0.1",
"seaborn>=0.11.2",
# "sklearn>=0.0",
"pytorch-cuda>=1.11.0",
"torchmetrics>=0.6.2",
"torchvision>=0.12.0",
"tqdm",
"yaml"
],
)