forked from mhvk/baseband-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
59 lines (53 loc) · 1.8 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
[build_sphinx]
source-dir = docs
build-dir = docs/_build
all_files = 1
[build_docs]
source-dir = docs
build-dir = docs/_build
all_files = 1
[upload_docs]
upload-dir = docs/_build/html
show-response = 1
[tool:pytest]
minversion = 3.1
testpaths = scintillometry docs
norecursedirs = build docs/_build
doctest_plus = enabled
[ah_bootstrap]
auto_use = True
[flake8]
ignore=
# missing whitespace around arithmetic operator
E226,
# line too long
E501,
# unused import, import * (for __init__.py)
F401, F403,
# line break after binary operator (have to choose before or after),
W504
exclude=
# part of astropy affilliated package helpers, not our worry.
scintillometry/conftest.py,scintillometry/version.py,scintillometry/__init__.py,
docs/conf.py,
ah_bootstrap.py,setup.py,ez_setup.py,
astropy_helpers,
# standard things to ignore
__pycache__,build,dist,htmlcov,licenses
[metadata]
package_name = scintillometry
description = A package for radio baseband data reduction and analysis
long_description = Scintillometry is a package for reduction and analysis of radio baseband data, optimized for pulsar scintillometry science. It relies on Baseband to read raw data, and numpy and astropy terform analysis.
author = Marten H. van Kerkwijk, Chenchong Zhu
author_email = [email protected]
license = GNU GPL v3+
url = https://scintillometry.readthedocs.io
edit_on_github = True
github_project = mhvk/scintillometry
# install_requires should be formatted as a comma-separated list, e.g.:
# install_requires = astropy, scipy, matplotlib
install_requires = astropy>=3.0, baseband
# Version should be PEP440 compatible (https://www.python.org/dev/peps/pep-0440)
version = 0.0.dev0
# Note: you will also need to change this in your package's __init__.py
minimum_python_version = 3.5