-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (55 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
66 lines (55 loc) · 1.53 KB
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
[build-system]
requires = ["setuptools","versioneer[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "gammapy_plugin"
description = "The gammapy plugin for 3ML"
readme = "README.md"
authors = [
{name="Tobias Preis",email="tobias.preis@uibk.ac.at"},
{name="J. Michael Burgess",email="jburgess@mpe.mpg.de"}
]
maintainers = [
{name="Tobias Preis",email="tobias.preis@uibk.ac.at"}
]
license = "GPL-3.0"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Physics",
]
dynamic = ["version"]
dependencies = [
"numpy",
"matplotlib",
"astromodels",
"threeml",
"gammapy>=2.0",
]
[project.urls]
Homepage = "https://github.com/threeML/gammapy-plugin"
Issues = "https://github.com/threeML/gammapy-plugin/issues"
[project.optional-dependencies]
tests = ["pytest","pytest-coverage","coverage"]
flake = ["flake8"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"gammapy_plugin.data.datasets" = ["*.py","*.fits"]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "gammapy_plugin/_version.py"
versionfile_build = "gammapy_plugin/_version.py"
tag_prefix = "v"
parentdir_prefix = "gammapy_plugin-"
[tool.pytest]
addopts = ["--color=yes","-ra"]
testpaths = ["gammapy_plugin/test"]
[tool.isort]
profile = "black"