-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
31 lines (29 loc) · 1.01 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="asaplib",
version="0.0.1",
author="Bingqing Cheng",
author_email="[email protected]",
description=
"Automatic Selection And Prediction tools for materials and molecules",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/BingqingCheng/ASAP",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'dscribe==2.0.1', 'click>=7.0', 'numpy<=1.24.3', 'scipy<=1.10.1', 'scikit-learn<=1.2.2',
'ase<=3.22.1', 'umap-learn', 'PyYAML', 'tqdm', 'pandas', 'matplotlib<=3.7.1'
],
extras_require={'testing': ['pytest>=5.0']},
python_requires='>=3.7',
entry_points="""
[console_scripts]
asap=asaplib.cli.cmd_asap:asap
""")