-
Notifications
You must be signed in to change notification settings - Fork 126
/
setup.py
33 lines (31 loc) · 1 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
"""Install script for setuptools."""
from setuptools import find_packages
from setuptools import setup
setup(
name="unimol",
version="1.0.0",
description="",
author="DP Technology",
author_email="[email protected]",
license="The MIT License",
url="https://github.com/deepmodeling/Uni-Mol",
packages=find_packages(
exclude=["scripts", "tests", "example_data", "docker", "figure"]
),
install_requires=[
"numpy",
"pandas",
"scikit-learn-extra",
],
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",
],
)