-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.cfg
65 lines (61 loc) · 1.92 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
[metadata]
name = cpymad
version = attr: cpymad.__version__
description = Cython binding to MAD-X
url = https://github.com/hibtc/cpymad
long_description = file: README.rst
author = Thomas Gläßle
author_email = [email protected]
license = GPLv3+
license_files =
COPYING.rst
LICENSE/*
src/cpymad/COPYING/*
project_urls =
Source Code = https://github.com/hibtc/cpymad
Bug Tracker = https://github.com/hibtc/cpymad/issues
Documentation = http://hibtc.github.io/cpymad/
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
License :: OSI Approved :: Apache Software License
License :: Other/Proprietary License
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3
Topic :: Scientific/Engineering :: Physics
long_description_content_type = text/x-rst
[options]
zip_safe = false
include_package_data = true
python_requires = >=3.5
install_requires =
numpy
minrpc>=0.1.0
[options.extras_require]
doc =
sphinx
sphinx_rtd_theme
sphinx_substitution_extensions
sphinx_automodapi
sphinx_autodoc_typehints
pandas
dev =
cython
flake8
pytest
[flake8]
# codes: https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
# default: ignore = E121,E123,E126,E133,E226,E241,E242,E704,W503,W504,W505
ignore = E126,E221,E226,E241,E272,E306,E701,E731,E741,W503,W504
exclude = .git,__pycache__,doc/conf.py,build,dist,.eggs
max-line-length = 84
[coverage:paths]
# when running `coverage combine`, replace these paths by `src/cpymad`, see:
# https://coverage.readthedocs.io/en/latest/config.html#paths
source =
src/cpymad/
*/site-packages/cpymad-*.egg/cpymad
*/site-packages/cpymad/