-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
60 lines (52 loc) · 1.53 KB
/
pyproject.toml
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
[build-system]
requires = ['setuptools', 'wheel', 'setuptools_dso~=2.9']
build-backend = 'setuptools.build_meta'
[project]
name = 'tilequant'
description = 'Tool for quantizing image colors using tile-based palette restrictions'
version = '1.1.0'
readme = 'README.rst'
requires-python = '>=3.9'
authors = [
{ name='Marco "Capypara" Köpcke', email='[email protected]' },
]
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Topic :: Multimedia :: Graphics',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
dependencies = [
'Pillow~=10.0.0',
'ordered-set~=4.1.0',
'sortedcollections~=2.1.0',
'click~=8.1.3',
'setuptools_dso~=2.9'
]
[project.urls]
Source = 'https://github.com/SkyTemple/tilequant/'
[project.scripts]
tilequant = 'tilequant.cli:main'
[tool.mypy]
warn_unused_configs = true
mypy_path = '.'
explicit_package_bases = true
namespace_packages = true
check_untyped_defs = true
exclude = ['tilequant_dsoinfo.py', 'build/']
[[tool.mypy.overrides]]
module = 'setuptools_dso'
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = 'setuptools_dso.probe'
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = 'setuptools'
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = 'sortedcollections'
ignore_missing_imports = true