You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.7 KiB
60 lines
1.7 KiB
[build-system] |
|
requires = ["setuptools>=61.0", "wheel"] |
|
build-backend = "setuptools.build_meta" |
|
|
|
[project] |
|
name = "pystorm" |
|
version = "1.0.0" |
|
description = "Python bindings for StormLib - A library for working with MPQ archives" |
|
readme = "README.md" |
|
requires-python = ">=3.7" |
|
license = {text = "MIT"} |
|
authors = [ |
|
{name = "Matteo Benedetto", email = "your.email@example.com"} |
|
] |
|
keywords = ["mpq", "stormlib", "blizzard", "archive", "mopaq"] |
|
classifiers = [ |
|
"Development Status :: 4 - Beta", |
|
"Intended Audience :: Developers", |
|
"License :: OSI Approved :: MIT License", |
|
"Programming Language :: Python :: 3", |
|
"Programming Language :: Python :: 3.7", |
|
"Programming Language :: Python :: 3.8", |
|
"Programming Language :: Python :: 3.9", |
|
"Programming Language :: Python :: 3.10", |
|
"Programming Language :: Python :: 3.11", |
|
"Programming Language :: Python :: 3.12", |
|
"Topic :: Software Development :: Libraries", |
|
"Topic :: System :: Archiving", |
|
] |
|
|
|
[project.urls] |
|
Homepage = "https://github.com/enne2/pystorm" |
|
Repository = "https://github.com/enne2/pystorm" |
|
Documentation = "https://github.com/enne2/pystorm#readme" |
|
"Bug Tracker" = "https://github.com/enne2/pystorm/issues" |
|
"StormLib Repository" = "https://github.com/ladislav-zezula/StormLib" |
|
|
|
[project.optional-dependencies] |
|
dev = [ |
|
"pytest>=7.0", |
|
"black>=22.0", |
|
"flake8>=4.0", |
|
"mypy>=0.950", |
|
] |
|
|
|
[tool.setuptools] |
|
packages = ["pystorm"] |
|
|
|
[tool.setuptools.package-data] |
|
pystorm = ["*.so", "*.so.*", "*.dll", "*.dylib"] |
|
|
|
[tool.black] |
|
line-length = 100 |
|
target-version = ['py37', 'py38', 'py39', 'py310', 'py311'] |
|
|
|
[tool.mypy] |
|
python_version = "3.7" |
|
warn_return_any = true |
|
warn_unused_configs = true |
|
disallow_untyped_defs = false
|
|
|