forked from materialsproject/pymatgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
187 lines (180 loc) · 6.82 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
"""Pymatgen package configuration."""
from __future__ import annotations
import platform
import sys
import numpy as np
from setuptools import Extension, find_namespace_packages, setup
is_win_64 = sys.platform.startswith("win") and platform.machine().endswith("64")
extra_link_args = ["-Wl,--allow-multiple-definition"] if is_win_64 else []
with open("README.md") as file:
long_description = file.read()
# unlike GitHub readme's, PyPI doesn't support <picture> tags used for responsive images
# (i.e. adaptive to OS light/dark mode)
# NOTE this manual fix won't work once we migrate to pyproject.toml
logo_url = "https://raw.githubusercontent.com/materialsproject/pymatgen/master/docs/_images/pymatgen.svg"
long_description = (
f"<h1 align='center'><img alt='Logo' src='{logo_url}' height='70'></h1>" + long_description.split("</picture>")[-1]
)
setup(
name="pymatgen",
packages=find_namespace_packages(include=["pymatgen.*", "pymatgen.**.*", "cmd_line"]),
version="2023.12.18",
python_requires=">=3.9",
install_requires=[
"matplotlib>=1.5",
"monty>=3.0.2",
"networkx>=2.2",
"numpy>=1.25.0",
"palettable>=3.1.1",
"pandas",
"plotly>=4.5.0",
"pybtex",
"requests",
"ruamel.yaml>=0.17.0",
"scipy>=1.5.0",
"spglib>=2.0.2",
"sympy",
"tabulate",
"tqdm",
"uncertainties>=3.1.4",
"joblib",
],
extras_require={
"ase": ["ase>=3.3"],
"tblite": ["tblite[ase]>=0.3.0"],
"vis": ["vtk>=6.0.0"],
"abinit": ["netcdf4"],
"relaxation": ["matgl", "chgnet"],
"electronic_structure": ["fdint>=2.0.2"],
"dev": [
"mypy",
"pre-commit",
"pytest-cov",
"pytest-split",
"pytest",
"ruff",
],
"docs": [
"sphinx",
"sphinx_rtd_theme",
"doc2dash",
],
"optional": [
"ase>=3.22.1",
# TODO restore BoltzTraP2 when install fixed, hopefully following merge of
# https://gitlab.com/sousaw/BoltzTraP2/-/merge_requests/18
# caused CI failure due to ModuleNotFoundError: No module named 'packaging'
# "BoltzTraP2>=22.3.2; platform_system!='Windows'",
"chemview>=0.6",
"chgnet",
"f90nml>=1.1.2",
"galore>=0.6.1",
"h5py>=3.8.0",
"jarvis-tools>=2020.7.14",
"matgl",
"netCDF4>=1.5.8",
"phonopy>=2.4.2",
"seekpath>=1.9.4",
"tblite[ase]>=0.3.0; platform_system=='Linux'",
# "hiphive>=0.6",
# "openbabel>=3.1.1; platform_system=='Linux'",
],
"numba": ["numba"],
},
# All package data has to be explicitly defined. Do not use automated codes like last time. It adds
# all sorts of useless files like test files and is prone to path errors.
package_data={
"pymatgen.analysis": ["*.yaml", "*.json", "*.csv"],
"pymatgen.analysis.chemenv": [
"coordination_environments/coordination_geometries_files/*.json",
"coordination_environments/coordination_geometries_files/*.txt",
"coordination_environments/strategy_files/ImprovedConfidenceCutoffDefaultParameters.json",
],
"pymatgen.analysis.structure_prediction": ["*.yaml", "data/*.json"],
"pymatgen.analysis.diffraction": ["*.json"],
"pymatgen.analysis.magnetism": ["default_magmoms.yaml"],
"pymatgen.analysis.solar": ["am1.5G.dat"],
"pymatgen.entries": ["*.json.gz", "*.yaml", "data/*.json"],
"pymatgen.core": ["*.json"],
"pymatgen": ["py.typed"],
"pymatgen.io.vasp": ["*.yaml", "*.json", "*.json.gz", "*.json.bz2"],
"pymatgen.io.feff": ["*.yaml"],
"pymatgen.io.cp2k": ["*.yaml"],
"pymatgen.io.lobster": ["lobster_basis/*.yaml"],
"pymatgen.command_line": ["*"],
"pymatgen.util": ["structures/*.json", "*.json"],
"pymatgen.vis": ["*.yaml"],
"pymatgen.io.lammps": ["CoeffsDataType.yaml", "templates/*.template"],
"pymatgen.symmetry": ["*.yaml", "*.json", "*.sqlite"],
"cmd_line": ["**/*"],
},
author="Pymatgen Development Team",
author_email="[email protected]",
maintainer="Shyue Ping Ong, Matthew Horton, Janosh Riebesell",
url="https://pymatgen.org",
license="MIT",
project_urls={
"Docs": "https://pymatgen.org",
"Package": "https://pypi.org/project/pymatgen",
"Repo": "https://github.com/materialsproject/pymatgen",
},
description="Python Materials Genomics is a robust materials "
"analysis code that defines core object representations for "
"structures and molecules with support for many electronic "
"structure codes. It is currently the core analysis code "
"powering the Materials Project "
"(https://materialsproject.org).",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=[
"ABINIT",
"analysis",
"crystal",
"diagrams",
"electronic",
"gaussian",
"materials",
"nwchem",
"phase",
"project",
"qchem",
"science",
"structure",
"VASP",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
],
ext_modules=[
Extension(
"pymatgen.optimization.linear_assignment",
["pymatgen/optimization/linear_assignment.pyx"],
extra_link_args=extra_link_args,
),
Extension("pymatgen.util.coord_cython", ["pymatgen/util/coord_cython.pyx"], extra_link_args=extra_link_args),
Extension(
"pymatgen.optimization.neighbors", ["pymatgen/optimization/neighbors.pyx"], extra_link_args=extra_link_args
),
],
entry_points={
"console_scripts": [
"pmg = pymatgen.cli.pmg:main",
"feff_plot_cross_section = pymatgen.cli.feff_plot_cross_section:main",
"feff_plot_dos = pymatgen.cli.feff_plot_dos:main",
"get_environment = pymatgen.cli.get_environment:main",
]
},
include_dirs=[np.get_include()],
)