generated from materialsproject/pymatgen-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
48 lines (42 loc) · 1.7 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
# Copyright (c) Materials Virtual Lab
# Distributed under the terms of the Modified BSD License.
from setuptools import setup, find_namespace_packages
import os
SETUP_PTH = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(SETUP_PTH, "README.md"), encoding="utf8") as f:
desc = f.read()
setup(
name="pymatgen-io-validation",
packages=find_namespace_packages(include=["pymatgen.io.*"]),
version="0.0.3",
install_requires=[
"pymatgen>=2024.5.1",
"emmet-core>=0.83.6",
"pydantic>=2.4.2",
"requests>=2.28.1",
],
extras_require={},
package_data={"pymatgen.io.validation": ["*.yaml"]},
author="Matthew Kuner, Janosh Riebesell, Jason Munro, Aaron Kaplan",
author_email="matthewkuner@berkeley.edu",
maintainer="Matthew Kuner",
url="https://github.com/materialsproject/pymatgen-io-validation",
license="BSD",
description="A comprehensive I/O validator for electronic structure calculations",
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",
keywords=["pymatgen"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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",
],
)