-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
71 lines (67 loc) · 2.12 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
"""
PyTASER: transient absorption prediction tool.
"""
import pathlib
from setuptools import find_packages, setup
long_description = pathlib.Path("README.md").read_text()
setup(
name="pytaser",
version="2.3.0",
description="TAS prediction tool",
url="https://pytaser.readthedocs.io/en/latest/",
author="Savyasanchi Aggarwal",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering",
"Topic :: Other/Nonlisted Topic",
"Operating System :: OS Independent",
],
keywords="dft tas semiconductor-physics solar-fuel materials-project metal-oxides",
test_suite="nose.collector",
packages=find_packages(),
install_requires=[
"numpy",
"scipy",
"matplotlib>=3.7.1",
"pymatgen>=2023.05.31",
"mp-api!=0.34.0,!=0.34.1,!=0.34.2",
# bug: boto3 added as an unnecessary requirement
# (https://github.com/materialsproject/pymatgen/issues/3241,
# https://github.com/materialsproject/api/pull/836)
],
extras_require={
"tests": [
"pytest>=7.1.3",
"pytest-mpl>=0.16",
"monty",
"pathlib",
],
"docs": [
"sphinx",
"sphinx-book-theme",
"sphinx-rtd-theme",
"sphinx_click",
"sphinx_design",
"nbsphinx",
"nbsphinx_link",
"sphinx_copybutton",
"sphinx_toggleprompt",
"sphinx-autobuild",
"sphinx_minipres",
"sphinx_tabs",
"sphinx_togglebutton",
],
},
data_files=["LICENSE"],
)