-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
55 lines (47 loc) · 1.1 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
[bdist_wheel]
universal = 1
[metadata]
name = sweetrpg-db
version = attr: sweetrpg_db.__version__
url = https://sweetrpg.com
project_urls =
Documentation = https://sweetrpg.github.io/db
license = MIT
author = Paul Schifferer
author_email = [email protected]
long_description = file: README.md
classifiers =
Development Status :: 4 - Beta
Environment :: Web Environment
Framework :: Flask
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Libraries :: Application Frameworks
[options]
packages = find:
package_dir = = src
include_package_data = true
python_required = >=3.12
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
sweetrpg-db = sweetrpg_db.cli:main
[tool:pytest]
testpaths = tests
filterwarnings =
error
[coverage:run]
branch = True
source =
sweetrpg_db
tests
[coverage:paths]
source =
src
*/site-packages
[semantic_release]
version_variable = src/sweetrpg_db/__init__.py:__version__
branch = develop