-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
65 lines (60 loc) · 1.65 KB
/
Copy pathsetup.cfg
File metadata and controls
65 lines (60 loc) · 1.65 KB
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
[metadata]
name = mcaddon
version = attr: mcaddon.__version__
author = Legopitstop
author_email=legopitstop@lpsmods.dev
description=Minecraft: Bedrock Edition development kit
keywords=Minecraft: Bedrock Edition, mcpack, mcaddon, behaviorpack, resourcepack, JSON
url=https://github.com/legopitstop/mcaddon-py/
project_urls=
Download=https://github.com/legopitstop/mcaddon-py/releases
Documentation=https://docs.lpsmods.dev/mcaddon/
Source Code=https://github.com/legopitstop/mcaddon-py
long_description=file: README.md
long_description_content_type=text/markdown
license=MIT
license_file=LICENSE
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.14
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.10
install_requires =
pydantic
mcpath
mclang
molang
commentjson
mini-racer
pillow
rapidnbt
watchdog
Deprecated
context_menu
[options.entry_points]
console_scripts =
mcaddon = mcaddon.toolchain.cli:main
[options.extras_require]
testing=
pytest>=6.0
pytest-cov>=2.0
mypy>=1.11.2
flake8>=3.9
tox>=3.24
types-Deprecated
types-requests
[options.package_data]
mcaddon = ["py.typed", "assets/**/*"]
[flake8]
max-line-length=160
extend-ignore=F401, F403, E203