forked from BingqingCheng/ASAP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.45 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
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>=0.4.0', 'click>=7.0', 'numpy', 'scipy', 'scikit-learn',
'ase', 'umap-learn', 'PyYAML', 'tqdm', 'pandas'
],
extras_require={'testing': ['pytest>=5.0']},
python_requires='>=3.6',
# scripts=['scripts/clustering.py',
# 'scripts/frame_select.py',
# 'scripts/gen_soap_descriptors.py',
# 'scripts/kernel_density_estimation.py',
# 'scripts/kpca.py',
# 'scripts/kpca_sparse.py',
# 'scripts/krr.py',
# 'scripts/pca.py',
# 'scripts/kpca_for_projection_viewer.py',
# 'scripts/ridge_regression.py',
# 'scripts/tsne.py',
# 'scripts/umap_reducer.py']
entry_points="""
[console_scripts]
asap=asaplib.cli.cmd_asap:asap
""")