-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
61 lines (59 loc) · 1.7 KB
/
Copy pathsetup.py
File metadata and controls
61 lines (59 loc) · 1.7 KB
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
59
60
61
"""Install script for setuptools."""
from setuptools import find_packages
from setuptools import setup
setup(
name="unimol_tools",
version="0.1.6",
description=(
"unimol_tools is a Python package for property prediction 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="unimol@dp.tech",
license="The MIT License",
url="https://github.com/deepmodeling/unimol_tools",
packages=find_packages(
where='.',
exclude=[
"build",
"dist",
],
),
install_requires=[
"numpy<2.3.0,>=2.0.0",
"pandas>=2.2.2",
"torch>=2.4.0",
"joblib",
"rdkit>=2024.3.4",
"pyyaml",
"addict",
"scikit-learn>=1.5.0",
"numba",
"tqdm",
"hydra-core",
"omegaconf",
"tensorboard",
"lmdb",
"transformers",
],
python_requires=">=3.9",
include_package_data=True,
package_data={
"unimol_hf": [
"pretrained/unimol-v1-allh/*",
"pretrained/unimol-v1-noh/*",
],
},
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",
],
)