-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
57 lines (49 loc) · 1.19 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
[bdist_wheel]
universal = 1
[metadata]
name = sweetrpg-library-api
version = attr: sweetrpg_library_api.__version__
url = https://sweetrpg.com
project_urls =
Documentation = https://sweetrpg.github.io/library-api
license = MIT
author = Paul Schifferer
author_email = [email protected]
long_description = file: README.md
classifiers =
Development Status :: 3 - Alpha
Environment :: Web Environment
Framework :: Flask
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Internet :: WWW/HTTP :: WSGI :: Application
[options]
packages = find:
package_dir = = src
include_package_data = true
python_required = >= 3.11
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
sweetrpg-library-api = sweetrpg_library_api.cli:main
[tool:pytest]
testpaths = tests
filterwarnings =
error
[coverage:run]
branch = True
source =
sweetrpg_library_api
tests
[coverage:paths]
source =
src
*/site-packages
[semantic_release]
version_variable = src/sweetrpg_library_api/__init__.py:__version__
branch = develop
upload_to_pypi = False
tag_format = {version}