-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
100 lines (87 loc) · 2.27 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
[build-system]
requires = ["setuptools>=45",
"setuptools_scm[toml]>=6.2",
"wheel"]
build-backend = 'setuptools.build_meta'
[project]
name = "hermes_eea"
description = "A Python package to process and analyze data from the HERMES eea instrument."
readme = "README.rst"
dynamic = ["version"]
authors = [{name = "Steven Christe", email="[email protected]"},
{name = "Damian Barrous Dumme", email="[email protected]"}]
license = {file = "LICENSE.rst"}
requires-python = ">=3.9"
keywords = ["hermes", "nasa mission", "space weather"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache 2.0",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
'hermes_core @ git+https://github.com/HERMES-SOC/hermes_core/',
'ccsdspy @ git+https://github.com/ddasilva/ccsdspy.git'
]
[project.optional-dependencies]
dev = [
'coverage>=5.0.3',
'pytest==8.0.0',
'pytest-astropy==0.11.0',
'pytest-cov==4.1.0',
'black==24.1.1',
'flake8==7.0.0',
'coverage[toml]==7.4.1'
]
docs = [
'sphinx==7.2.6',
'sphinx-automodapi==0.16.0'
]
test = [
'pytest==8.0.0',
'pytest-astropy==0.11.0',
'pytest-cov==4.1.0',
'coverage[toml]==7.4.1'
]
style = [
'black==24.1.1',
'flake8==7.0.0'
]
[tool.setuptools.package-data]
"hermes_eea.data" = ["**"]
[tool.setuptools]
packages = ["hermes_eea"]
[tool.setuptools_scm]
write_to = "hermes_eea/_version.py"
[tool.pytest.ini_options]
testpaths = [
"hermes_eea/tests",
"docs"
]
doctest_plus = "enabled"
text_file_format = "rst"
addopts = "--doctest-rst"
[tool.coverage.run]
omit = [
'hermes_eea/__init*',
'hermes_eea/conftest.py',
'hermes_eea/*setup_package*',
'hermes_eea/tests/*',
'hermes_eea/*/tests/*',
'hermes_eea/extern/*',
'hermes_eea/version*',
'*/hermes_eea/__init*',
'*/hermes_eea/conftest.py',
'*/hermes_eea/*setup_package*',
'*/hermes_eea/tests/*',
'*/hermes_eea/*/tests/*',
'*/hermes_eea/extern/*',
'*/hermes_eea/version*',
]
[tool.black]
extend-exclude = '''hermes_eea/_version.py'''