-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
45 lines (42 loc) · 1.13 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
import os
import pkg_resources
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="clamp",
py_modules=["clamp"],
version="1.0",
author="Philipp Seidl",
author_email="[email protected]",
packages=find_packages(exclude=["tests*"]),
install_requires="""mhnreact@git+https://github.com/ml-jku/mhn-react.git
clip@git+https://github.com/openai/CLIP.git
numpy
tqdm
scikit-learn
scipy
pandas
nltk
rdkit-pypi
transformers
matplotlib
torch
torchvision
loguru
wandb
mlflow
swifter""".split(),
description="",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ml-jku/clamp",
python_requires='>=3.7',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD-2-Clause License",
"Operating System :: linux-64",
],
include_package_data=True,
extras_require={'dev': ['pytest']},
)