-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.cfg
99 lines (86 loc) · 1.99 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
[metadata]
name = hoggorm
version = 0.13.3
description = Package for explorative multivariate statistics.
author = Oliver Tomic
author-email = [email protected]
license = BSD license
url = https://github.com/olivertomic/hoggorm
long-description = file: README.rst
platforms = any
keywords=
hoggorm
statistic
education
science
classifiers =
Development Status :: 4 - Beta
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Science/Research
Operating System :: OS Independent
License :: OSI Approved :: BSD License
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering :: Chemistry
Topic :: Scientific/Engineering :: Mathematics
[options]
zip_safe = False
packages = find:
include_package_data = True
python_requires=>=3.5
install_requires =
numpy >= 1.11.3
[options.packages.find]
exclude =
tests
[options.extras_require]
dev =
bump2version==0.5.11
watchdog==0.9.0
tox==3.14.0
sphinx==1.8.5
twine==1.14.0
test =
pytest==4.6.5
pytest-runner==5.1
pytest-cov
coverage==4.5.4
flake8==3.7.8
codecov
codacy-coverage
[test]
extras = True
[tool:pytest]
addopts =
--cov hoggorm --cov-report term-missing:skip-covered --cov-report xml
--verbose
norecursedirs =
dist
build
.tox
[bdist_wheel]
universal = 1
[flake8]
exclude = docs,examples
max-line-length = 140
# some of rules are only temporarly ignored
ignore=E402,F841,F401,W504,E501,E722,E741
[aliases]
# Define setup.py command aliases here
test = pytest
[bumpversion]
current_version = 0.13.3
commit = True
tag = True
[bumpversion:file:setup.cfg]
search = version='{current_version}'
replace = version='{new_version}'
[bumpversion:file:hoggorm/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'