-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
50 lines (46 loc) · 1.3 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
[metadata]
name = calc11
version = 0.1
author = Marten H. van Kerkwijk, Chenchong Zhu
author_email = [email protected]
license = GNU GPL v3+
license_file = LICENSE
url = https://github.com/mhvk/pycalc11
# project_urls =
# Documentation = https://pycalc11.readthedocs.io
description = Python wrappers for CALC11
long_description = file: README.rst
long_description_content_type = text/x-rst
edit_on_github = True
github_project = mhvk/pycalc11
[options]
zip_safe = False
packages = find:
python_requires = >=3.8
install_requires =
numpy>=1.17
[tool:pytest]
testpaths = "calc11"
[flake8]
ignore=
# missing whitespace around arithmetic operator
E226,
# line break before binary operator (have to choose before or after),
W503
exclude =
# part of astropy affilliated package template, not our worry.
baseband/conftest.py,baseband/version.py,baseband/__init__.py,
baseband/_astropy_init.py,
docs/conf.py,
setup.py,
# standard things to ignore
__pycache__,build,dist,htmlcov,licenses
[pycodestyle]
exclude =
# part of astropy affilliated package template, not our worry.
baseband/conftest.py,baseband/version.py,baseband/__init__.py,
baseband/_astropy_init.py,
docs/conf.py,
setup.py,
# standard things to ignore
__pycache__,build,dist,htmlcov,licenses