aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
blob: e3a14ddc13b14eb5dfb518e66b5005ba3bd82da6 (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
43
44
45
46
47
48
49
50
[metadata]
name = textoutpc
version = attr: textoutpc.version
url = https://textout.touhey.pro/
project_urls =
    Documentation = https://textout.touhey.pro/docs/
author = Thomas Touhey
author_email = thomas@touhey.fr
description = textout() equivalent from Planète Casio
long_description = file: README.rst
keywords = planète casio, textout, bbcode, translator, parser
license = MIT
classifiers =
	Development Status :: 2 - Pre-Alpha
	License :: OSI Approved :: MIT License
	Natural Language :: French
	Operating System :: OS Independent
	Programming Language :: Python :: 3
	Intended Audience :: Developers
	Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
	Topic :: Text Processing :: Markup :: HTML

[options]
zip_safe = False
include_package_data = True
packages = textoutpc, textoutpc.builtin
test_suite = test
scripts =
  scripts/textout2html
  scripts/textout2ls
install_requires =
  regex
  thcolor

[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