-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
35 lines (28 loc) · 932 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
# https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
# https://github.com/wimglenn/resources-example/blob/master/setup.cfg
[metadata]
name = yachalk
version = attr: yachalk.VERSION
description = 🖍️ Terminal string styling done right
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/bluenote10/yachalk
keywords = terminal, color, styling, ansi
license = MIT
classifiers =
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: Terminals
Topic :: System :: Logging
[options]
packages = find:
include_package_data = true
install_requires =
setuptools
importlib_resources
[tool:pytest]
addopts = --cov=yachalk --cov-report term-missing --cov-report html:.cov_html --cov-report=xml
[flake8]
max-line-length = 100