-
Notifications
You must be signed in to change notification settings - Fork 145
/
setup.cfg
85 lines (76 loc) · 2.24 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[metadata]
name = colander
version = 2.0
description = A simple schema-based serialization and deserialization library
long_description = file: README.rst, CHANGES.rst
long_description_content_type = text/x-rst
keywords = serialize deserialize validate schema validation
license = BSD-derived (http://www.repoze.org/LICENSE.txt)
license_files =
LICENSE.txt
classifiers =
Development Status :: 6 - Mature
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Operating System :: OS Independent
License :: Repoze Public License
url = https://github.com/Pylons/colander
project_urls =
Documentation = https://docs.pylonsproject.org/projects/colander/en/latest/index.html
Changelog = https://docs.pylonsproject.org/projects/colander/en/latest/changes.html
Issue Tracker = https://github.com/Pylons/colander/issues
author = Agendaless Consulting
author_email = pylons-discuss@googlegroups.com
maintainer = Pylons Project
maintainer_email = pylons-discuss@googlegroups.com
[options]
package_dir=
=src
packages=find_namespace:
include_package_data = True
python_requires = >=3.8
install_requires =
translationstring
iso8601
[options.packages.find]
where=src
[options.extras_require]
testing =
pytest
pytest-cov
coverage>=5.0
babel
docs =
Sphinx>=1.8.1
docutils
pylons-sphinx-themes>=1.0.9
setuptools
[check-manifest]
ignore-bad-ideas =
src/colander/locale/**/*.mo
[compile_catalog]
directory = src/colander/locale
domain = colander
statistics = true
[extract_messages]
add_comments = TRANSLATORS:
input_paths = src/colander
output_file = src/colander/locale/colander.pot
width = 80
[init_catalog]
domain = colander
input_file = src/colander/locale/colander.pot
output_dir = src/colander/locale
[update_catalog]
domain = colander
input_file = src/colander/locale/colander.pot
output_dir = src/colander/locale
previous = true