aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 5096ffdf7b8bb76d8ca35be16e09c34857e12993 (plain)
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
[metadata]
name = thcolor
version = attr: thcolor.version
url = https://thcolor.touhey.pro/
author = Thomas Touhey
author_email = thomas@touhey.fr
description = color management module
long_description = file: README.rst
keywords = textout, color, parser, css
license = MIT
classifiers =
	Development Status :: 2 - Pre-Alpha
	License :: OSI Approved :: MIT License
	Operating System :: OS Independent
	Programming Language :: Python :: 3
	Intended Audience :: Developers
	Topic :: Text Processing :: Markup :: HTML

[options]
zip_safe = False
include_package_data = True
packages = thcolor, thcolor._builtin
test_suite = test
install_requires =
  regex

[options.package_data]
* = *.txt, *.rst

[build_sphinx]
source-dir = docs

[wheel]
universal = True

[flake8]
ignore = F401, F403, E128, E131, E241, E261, E265, E271, W191
exclude = .git, __pycache__, build, dist, docs/conf.py, test.py, test

[tool:pytest]
python_files = tests.py test_*.py *_tests.py
testpaths = tests