-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
133 lines (116 loc) · 3.19 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
[metadata]
name = basie
description = "schedule creator for italian radiotelescopes"
long_description = file: README.rst
author = "Marco Bartolini, Simona Righini"
author_email = "bartolini@ira.inaf.it"
maintainer = "Sergio Poppi"
maintainer_email = "sergio.poppi@inaf.it"
license = BSD
license_file = LICENSE
url = http://github.com/discos/basie/
edit_on_github = True
github_project = discos/basie/
keywords = astronomy, astrophysics, radiotelescopes,
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: C
Programming Language :: Cython
Programming Language :: Python :: 3
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Physics
[options]
include_package_data = True
zip_safe = False
packages = find:
python_requires = >=3.8
setup_requires = setuptools_scm
install_requires =
BTrees
argparse
numpy
astropy
persistent
numpy
astropy
pickleshare
transaction
zc.lockfile
zdaemon
ZConfig
ZODB
zodbpickle
zope.interface
future
[options.extras_require]
all =
test =
coverage>=4.0.3
nose>=1.3.7
pytest
pytest-astropy
unittest2; python_version <= '2.7'
docs =
sphinx-astropy
sphinx-toolbox
[options.entry_points]
console_scripts =
runbasie = basie:cmd_line
basie = basie:cmd_line
# [options.packages.find]
# where=basie
# include=schemas*, tests, user_templates
[options.package_data]
* = *.fits, basie/schemas/*.ini, *.txt
;[config.logging_helper]
;# Threshold for the logging messages. Logging messages that are less severe
;# than this level will be ignored. The levels are 'DEBUG', 'INFO', 'WARNING',
;# 'ERROR'
;log_level = 'INFO'
;# Whether to use color for the level names
;use_color = True
;# Whether to log warnings.warn calls
;log_warnings = True
;# Whether to log exceptions before raising them
;log_exceptions = True
;# Whether to always log messages to a log file
;log_to_file = True
;# The file to log messages to
;log_file_path = '~/.HENDRICS.log'
;# Threshold for logging messages to log_file_path
;log_file_level = 'INFO'
;# Format for log file entries
;#log_file_format = '%(asctime)s, %(origin)s, %(levelname)s, %(message)s'
[tool:pytest]
testpaths = "scripts/basie"
astropy_header = true
doctest_plus = enabled
text_file_format = rst
addopts = --doctest-rst
filterwarnings =
[coverage:run]
omit =
[coverage:report]
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about packages we have installed
except ImportError
# Don't complain if tests don't hit assertions
raise AssertionError
raise NotImplementedError
# Don't complain about script hooks
def main\(.*\):
# Ignore branches that don't pertain to this version of Python
pragma: py{ignore_python_version}
# Don't complain about IPython completion helper
def _ipython_key_completions_
[pycodestyle]
max-line-length = 100
exclude = extern,*parsetab.py,*lextab.py,test_*.py,__*.py
[flake8]
max-line-length = 100
exclude = extern,*parsetab.py,*lextab.py,test_*.py,__*.py