-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.cfg
40 lines (35 loc) · 1.14 KB
/
setup.cfg
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
[metadata]
name = pyirf
description = A python library to calculate IACT IRFs and Sensitivities
url = https://github.com/cta-observatory/pyirf
author = CTA Consortium, Analysis and Simulation Working Group
author_email = [email protected]
license = MIT
long_description = file: README.rst
github_project = cta-observatory/pyirf
project_urls =
Bug Tracker = https://github.com/cta-observatory/pyirf/issues
Documentation = https://cta-observatory.github.io/pyirf
Source Code = https://github.com/cta-observatory/pyirf
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Physics
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
requires_dist = setuptools
[options]
python_requires = >=3.9
setup_requires = setuptools_scm[toml]
[flake8]
exclude=
build,
docs,
.eggs
max-line-length=90
select = C,E,F,W,B,B950
ignore = E501,W503,E203