-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathsetup.py
58 lines (56 loc) · 1.9 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
50
51
52
53
54
55
56
57
58
from setuptools import setup
from setuptools import find_packages
# Sync the env.yml file here
install_requires = [
"tqdm",
"loguru",
"joblib",
"fsspec>=2021.9",
"pandas",
"numpy",
"scipy",
"matplotlib",
"pillow",
"selfies",
"appdirs",
"scikit-learn",
"packaging",
]
setup(
name="datamol",
version="0.7.17",
author="Valence Discovery",
author_email="[email protected]",
url="https://github.com/datamol-org/datamol",
description="A python library to work with molecules. Built on top of RDKit.",
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",
project_urls={
"Bug Tracker": "https://github.com/datamol-org/datamol/issues",
"Documentation": "https://doc.datamol.io",
"Source Code": "https://github.com/datamol-org/datamol",
},
python_requires=">=3.7",
install_requires=install_requires,
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
entry_points={"console_scripts": []},
)