-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
59 lines (52 loc) · 1.24 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
# Find out more about setup.cfg and what options are available here:
# https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
[metadata]
name = gmpda
description = Gaussian Mixture Periodicity Detection Algorithm (GMPDA)
long_description = file: README.md
author = Olga Kaiser
author_email = [email protected]
keywords = python
license = MIT Licence
classifiers =
Intended Audience :: Developers
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.10
Topic :: Utilities
Topic :: Scientific/Engineering :: Artificial Intelligence
[options]
zip_safe = False
include_package_data = True
python_requires = >= 3.10
package_dir =
=src
packages = find:
tests_require =
gmpda[test]
install_requires =
numpy
scipy
matplotlib
pandas
pyyaml
[options.package_data]
* = *.txt, *.md, *.rst
[options.packages.find]
where = src
[options.extras_require]
dev =
black
flake8
isort
pre-commit
[mypy]
files=src/**/*.py, run/*.py, test/*.py
ignore_missing_imports=true
[flake8]
extend-exclude = src/gmpda/__version.py
max-line-length = 120
max-complexity = 18
select = B,C,E,F,W,T4,B9
ignore = E203, E266, E231, E501, W503, F403