forked from solo-spice/sospice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
111 lines (94 loc) · 2.39 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
99
100
101
102
103
104
105
106
107
108
109
110
111
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "sospice"
authors = [
{ name="SPICE consortium", email="spice-github.ias@universite-paris-saclay.fr" },
]
description = "Python data analysis tools for Solar Orbiter/SPICE"
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]
dynamic = ["version", "dependencies"]
[tool.setuptools.packages.find]
exclude = ["local"]
[tool.setuptools.dynamic]
version = {attr = "sospice._version.__version__"}
dependencies = {file = ["requirements.txt"]}
#[project.optional-dependencies]
#docs = ["sphinx"]
[tool.setuptools_scm]
write_to = "sospice/_version.py"
[project.urls]
"Homepage" = "https://github.com/solo-spice/sospice/"
"Bug Tracker" = "https://github.com/solo-spice/sospice/issues"
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
| \.git
| \.github
| \.idea
| \.pytest_cache
| build
| dist
| docs
| htmlcov
| venv
)/
'''
[tool.coverage.run]
omit = [
"*/tests/*",
"tests/*",
"__init__.py",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--ignore=local"
[tool.towncrier]
package = "sospice"
filename = "CHANGELOG.rst"
package_dir = "."
directory = "changelog/"
issue_format = "`#{issue} <https://github.com/solo-spice/sospice/pull/{issue}>`__"
title_format = "{version} ({project_date})"
[[tool.towncrier.type]]
directory = "breaking"
name = "Breaking Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecation"
name = "Deprecations"
showcontent = true
[[tool.towncrier.type]]
directory = "removal"
name = "Removals"
showcontent = true
[[tool.towncrier.type]]
directory = "feature"
name = "New Features"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bug Fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Documentation"
showcontent = true
[[tool.towncrier.type]]
directory = "trivial"
name = "Internal Changes"
showcontent = true