forked from arvkevi/kneed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
38 lines (34 loc) · 882 Bytes
/
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
[bdist_wheel]
universal=1
[metadata]
name = kneed
version = file: kneed/VERSION
author = Kevin Arvai
author_email = [email protected]
url = https://github.com/arvkevi/kneed
description = Knee-point detection in Python
long_description = file: README.md
long_description_content_type = text/markdown
keywords = knee-detection, system
requires_python = >=3.5
license = BSD
license_files = LICENSE
maintainer = Kevin Arvai
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Information Analysis
Programming Language :: Python :: 3
[options]
packages = kneed
install_requires = file: requirements.txt
include_package_data = True
[options.packages.find]
where = kneed
exclude = docs, tests*
[options.extras_require]
plot = matplotlib>=2.2.5
testing =
pytest>=5.0.1
pytest-cov>=3.0.0
matplotlib>=2.2.5