forked from AI-multimodal/Lightshow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
95 lines (89 loc) · 2.03 KB
/
pyproject.toml
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "lightshow"
authors = [
{"name" = "Matthew R. Carbone", "email" = "[email protected]"},
{"name" = "Fanchen Meng", "email" = "[email protected]"},
{"name" = "Deyu Lu", "email" = "[email protected]"},
{"name" = "Benedikt Maurer"},
{"name" = "Fabien Peschel"},
{"name" = "Eli Stavitski"},
{"name" = "Xiaohui Qu"},
{"name" = "John T. Vinson"},
{"name" = "Christian Vorwerk"}
]
maintainers = [
{"name" = "Matthew R. Carbone", "email" = "[email protected]"},
{"name" = "Fanchen Meng", "email" = "[email protected]"}
]
description = "A one-stop-shop for writing computational spectroscopy input files"
readme = "README.rst"
requires-python = ">=3.7"
license = {"file" = "LICENSE"}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
]
dependencies = [
"numpy",
"tqdm",
"monty",
"pymatgen",
"ase"
]
# Dynamic version reads __version__ directly from my_package.__init__
dynamic = ["version"]
# [tool.flit.sdist]
# exclude = [
# "lightshow/_tests",
# "docs"
# ]
[project.optional-dependencies]
test = [
"codecov",
"coverage",
"flake8",
"pytest",
"pytest-cov",
"black",
"nbstripout",
"pre-commit",
]
doc = [
"sphinx",
"numpydoc",
"sphinx-copybutton",
"sphinx_rtd_theme",
"ipython",
"matplotlib"
]
[tool.setuptools]
packages = ["lightshow"]
[tool.black]
line-length = 80
include = '\.pyi?$'
exclude = '''
/(
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| docs/source/conf.py
)/
'''