-
Notifications
You must be signed in to change notification settings - Fork 128
/
setup.py
45 lines (43 loc) · 1.51 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
"""Install script for setuptools."""
from setuptools import find_packages
from setuptools import setup
setup(
name="unimol_tools",
version="0.1.1.post1",
description=("unimol_tools is a Python package for property prediciton with Uni-Mol in molecule, materials and protein."),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author="DP Technology",
author_email="[email protected]",
license="The MIT License",
url="https://github.com/deepmodeling/Uni-Mol/unimol_tools",
packages=find_packages(
where='.',
exclude=[
"build",
"dist",
],
),
install_requires=["numpy<2.0.0,>=1.22.4",
"pandas<2.0.0",
"torch",
"joblib",
"rdkit",
"pyyaml",
"addict",
"scikit-learn",
"tqdm"],
python_requires=">=3.6",
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)