-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
41 lines (39 loc) · 1.14 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="apex-flow",
version="1.2.10",
author="Zhuoyuan Li, Tongqi Wen",
author_email="[email protected]",
description="Alloy Properties EXplorer using simulations",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/deepmodeling/APEX.git",
packages=setuptools.find_packages(),
install_requires=[
"numpy<2.0.0",
"pydflow>=1.7.83",
"pymatgen>=2023.8.10",
'pymatgen-analysis-defects>=2023.8.22',
"dpdata>=0.2.13",
"dpdispatcher",
"phonopy",
"plotly",
"dash",
"dash_bootstrap_components",
"seekpath",
"fpop>=0.0.7",
"boto3",
"pymongo"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
entry_points={'console_scripts': [
'apex = apex.__main__:main',
]}
)