-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
31 lines (27 loc) · 951 Bytes
/
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 pathlib
import setuptools
here = pathlib.Path(__file__).parent.resolve()
readme = (here / 'README.md').read_text(encoding='utf-8')
# did not include torch and pyscf here
install_requires=["mp_api",
"numpy",
"pymatgen",
"seekpath",
"ruamel.yaml<0.18",
"urllib3<2.1,>=1.25.4"]
setuptools.setup(
name="apns",
author="Yike HUANG",
author_email="[email protected]",
description="ABACUS-Pseudopot-Nao-Square: for ABACUS calculation with higher efficiency and precision",
long_description=readme,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(include=['apns', 'apns.*']),
classifiers=[
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3.7",
],
install_requires=install_requires,
python_requires=">=3.7",
version="2.0.0 (alpha)"
)