-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
71 lines (56 loc) · 1.78 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
[metadata]
name = SuttaCentral Publisher
description = SuttaCentral publishing engine for HTML, EPUB, PDF.
author = SuttaCentral
author_email = [email protected]
license = Unlicense
license_files = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8; variant=GFM
url = https://suttacentral.net/
version = 0.1
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any
# Add here all kinds of additional classifiers as defined under
# https://pypi.org/classifiers/
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
[options]
zip_safe = False
packages = find_namespace:
include_package_data = True
package_dir =
=sutta_publisher/src
# Require a min/specific Python version (comma-separated conditions)
python_requires = >=3.10
# Add here dependencies of your project (line-separated), e.g. requests>=2.2,<3.0.
# Version specifiers like >=2.2,<3.0 avoid problems due to API changes in
# new major versions. This works if the required packages follow Semantic Versioning.
# For more information, check out https://semver.org/.
install_requires =
importlib-metadata; python_version<"3.10"
[options.packages.find]
where = src
exclude =
tests
[options.extras_require]
# Add here additional requirements for extra features, to install with:
# `pip install sutta_publisher[PDF]` like:
# PDF = ReportLab; RXP
# Add here test requirements (semicolon/line-separated)
testing =
setuptools
pytest
pytest-cov
[pycodestyle]
max-line-length=120
[isort]
combine_as_imports = True
include_trailing_comma=True
line_length=120
multi_line_output=3
use_parentheses=True
known_domain = sutta_publisher
sections = FUTURE,STDLIB,THIRDPARTY,DOMAIN,FIRSTPARTY,LOCALFOLDER
known_first_party = fixtures