-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
80 lines (71 loc) · 1.84 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
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
[metadata]
name = cosmogrb
description = A GRB cosmological data simulator
long_description = file:README.md
long_description_content_type = text/markdown
url = https://github.com/grburgess/cosmogrb
author_email = jmichaelburgess@gmail.com
author = J. Michael Burgess
requires_python = >=3.8.0
license = GPL-3+
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: POSIX
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering :: Physics
project_urls =
Bug Tracker = https://github.com/grburgess/cosmogrb/issues
Source Code = https://github.com/grburgess/cosmogrb
[options]
packages = find:
install_requires =
numpy
scipy<=1.6.2
ipython
ipyvolume>=0.6.0a2
gbmgeometry
gbm_drm_gen
matplotlib
pandas
astropy
h5py
cython
popsynth
tqdm
bokeh
numba
responsum
coloredlogs
pyyaml
dask
distributed
reproject
natsort
interpolation
omegaconf
numba
numba-scipy==0.4.0.dev0
tests_require =
pytest
pytest-codecov
[tool:pytest]
# Options for py.test:
# Specify command line options as you would do when invoking py.test directly.
# e.g. --cov-report html (or xml) for html/xml output or --junitxml junit.xml
# in order to write a coverage file that can be read by Jenkins.
addopts = --color=yes --cov=cosmogrb --cov-report=term -ra --ignore=cosmogrb/test --ignore=cosmogrb/_version.py
# log_cli = 1
# log_cli_level = DEBUG
testpaths = cosmogrb/test
norecursedirs = cosmogrb/test
[versioneer]
VCS=git
style=pep440
versionfile_source=cosmogrb/_version.py
versionfile_build=cosmogrb/_version.py
tag_prefix=v
parentdir_prefix=cosmogrb-