-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.cfg
48 lines (41 loc) · 1.21 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
[metadata]
name = pysparklines
version = 1.4
description = pysparklines is a unicode sparkline generation library.
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
author = Brandon Whaley
author_email = [email protected]
url = https://github.com/RedKrieg/pysparklines
platform = any
license = BSD 3-clause
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: BSD License
Operating System :: Unix
Operating System :: POSIX
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Topic :: Software Development
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
python_requires = >=3.2
[bdist_wheel]
universal = 1
[options.entry_points]
console_scripts =
sparkline = sparkline:main
[options.extras_require]
test = pytest; pytest-cov
[coverage:run]
branch = True
[coverage:report]
show_missing = True
[tool:pytest]
addopts = --cov sparkline --cov-branch --cov-report term-missing