generated from mpi-astronomy/mpia-python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
49 lines (46 loc) · 1.1 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
41
42
43
44
45
46
47
48
49
[metadata]
name = fc_sim
version = 0.0.1
author = Clara Escanuela Nieves
author_email = [email protected]
description = Low-level simulation package for the FlashCam
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD-3-Clause
license_file = LICENSE
url = https://github.com/clara-escanuela/flashcam-simulation
project_urls =
Bug Tracker = https://github.com/clara-escanuela/flashcam-simulation/issues
Source Code = https://github.com/clara-escanuela/flashcam-simulation
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: BSD License
Operating System :: OS Independent
[options]
package_dir =
=src
packages = find:
python_requires= >=3.7
# Example of how to add dependencies:
install_requires =
importlib-metadata >= 2.0 ; python_version < "3.8"
numpy
matplotlib
astropy
scipy
pandas
jupyter
ctapipe~=0.19.0
[options.packages.find]
where = src
[options.extras_require]
docs =
sphinx
sphinx-automodapi
numpydoc
test =
pytest
pytest-doctestplus
flake8
codecov
pytest-cov