-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·98 lines (82 loc) · 2.13 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
96
97
98
[build-system]
requires = ["setuptools>=72", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "STOPS"
description = "Supplementary Tools for POLSALT Spectropolarimetry"
readme = {file = "README.md", content-type = "text/markdown; charset=UTF-8"}
license = {file = "LICENSE"}
authors = [
{name = "Justin Cooper", email = "[email protected]"}
]
maintainers = [
{name = "Justin Cooper", email = "[email protected]"}
]
# Found using `vermin`
requires-python = ">=3.10"
# Found dynamically
dynamic = ["version", "dependencies"]
keywords = [
"astronomy",
"spectropolarimetry",
"tools"
]
classifiers = [
# Development Status
"Development Status :: 4 - Beta",
# Intended Usage
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
# License
"License :: OSI Approved :: BSD License",
# Doc Language
"Natural Language :: English",
# Environments
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
# Stop PyPI Upload
"Private :: Do Not Upload"
]
[project.urls]
Homepage = "https://github.com/JustinotherGitter/STOPS"
Repository = "https://github.com/JustinotherGitter/STOPS.git"
# Documentation = "https://github.com/JustinotherGitter/STOPS/wiki"
[project.scripts]
stops = "STOPS.__main__:main"
[project.optional-dependencies]
tests = [
"pytest >= 6.0"
]
# gui or cli or dev = [
# "sphinx",
# "black",
# "flake8",
# etc.
# ]
dev = [
# "sphinx",
"black",
"flake8",
"mypy",
"isort",
]
# [tool]
# [tool.setuptools]
# Default is true
# include-package-data = true
[tool.setuptools.package-data]
"STOPS.data" = ["*.salt"]
"STOPS.data.RSS_arc" = ["*.txt"]
"STOPS.utils" = ["*.mplstyle"]
[tool.setuptools.dynamic]
# Found in __init__.py
version = {attr = "STOPS.__version__"}
# Found using `pipreqs`
dependencies = {file = ["requirements.txt"]}
[tool.black]
line-length = 88
[tool.pytest.ini_options]
testpaths = ["tests"]