forked from yigbt/deepFPlearn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.11 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
readme_text = fh.read()
setup(
name="dfpl",
version="1.2",
author="Jana Schor, Patrick Scheibe, Matthias Bernt",
author_email="[email protected]",
packages=find_packages(include=["dfpl", "dfpl.*"]),
long_description=readme_text,
long_description_content_type="text/markdown",
url="https://github.com/yigbt/deepFPlearn",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
# all packages need for the final usage
# for additional packages during development, use requirements.txt
install_requires=[
"jsonpickle~=2.1.0",
"matplotlib==3.5.1",
"numpy==1.22.0",
"pandas==1.4.2",
"rdkit-pypi==2022.03.1",
"scikit-learn==1.0.2",
"keras==2.9.0",
"tensorflow-gpu==2.9.3",
"wandb~=0.12.0",
"umap-learn~=0.1.1",
"seaborn~=0.12.2",
"chemprop~=1.7.1",
],
entry_points={"console_scripts": ["dfpl=dfpl.__main__:main"]},
)