forked from materialsvirtuallab/pymatgen-analysis-diffusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (38 loc) · 1.55 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
"""Setup file for pymatgen.analysis.diffusion."""
from __future__ import annotations
import os
from setuptools import find_namespace_packages, setup
SETUP_PTH = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(SETUP_PTH, "README.rst")) as f:
desc = f.read()
setup(
name="pymatgen-analysis-diffusion",
packages=find_namespace_packages(include=["pymatgen.analysis.*"]),
version="2023.8.15",
install_requires=["pymatgen>=2022.0.3", "joblib"],
extras_require={},
package_data={},
author="materials virtual lab",
author_email="ongsp@eng.ucsd.edu",
maintainer="materials virtual lab",
url="https://github.com/materialsvirtuallab/pymatgen-diffusion/",
license="BSD",
description="Add-on to pymatgen for diffusion analysis.",
long_description=desc,
long_description_content_type="text/x-rst",
keywords=["VASP", "diffusion", "molecular dynamics", "MD"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)