-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
48 lines (43 loc) · 1.23 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
[metadata]
name = molang
version = attr: molang.__version__
author = Legopitstop
description=Molang to Python Translator & interpreter written in pure Python.
keywords=Minecraft: Bedrock Edition, molang, language
url=https://github.com/legopitstop/molang/
project_urls=
Download=https://github.com/legopitstop/molang/releases
Documentation=https://docs.lpsmods.dev/molang/
Source Code=https://github.com/legopitstop/molang
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.12
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.8
install_requires =
pydantic
[options.entry_points]
console_scripts =
molang = molang.cli:main
[options.extras_require]
testing=
pytest>=6.0
pytest-cov>=2.0
mypy>=1.11.2
flake8>=3.9
tox>=3.24
[options.package_data]
molang = py.typed
[flake8]
max-line-length=160