-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
74 lines (69 loc) · 1.62 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
build-backend = 'setuptools.build_meta'
requires = [
'build',
'pytest >= 6.0',
'pytest-cov',
'setuptools >= 61.0',
'wheel'
]
[project]
name = 'prev_gen'
version = '6.0.1'
requires-python = '>= 3.10'
dependencies = [
'colour-science>=0.4.5',
'drawsvg<3',
'matplotlib',
'multimethod',
'networkx',
'pillow',
'pyyaml',
'tomlkit',
'tqdm'
]
authors = [
{ name = 'Remigiusz Dończyk', email = '[email protected]' }
]
description = 'Palette preview generator'
readme = 'README.md'
license = { file = 'LICENSE' }
keywords = [
'palette',
'preview',
'generator',
'image',
'color',
'graphics'
]
classifiers = [
'Development Status :: 6 - Mature',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.10',
'Topic :: Artistic Software',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
'Topic :: Multimedia :: Graphics :: Presentation',
'Topic :: Software Development :: Libraries :: Python Modules',
'Typing :: Typed'
]
[project.urls]
Documentation = 'https://github.com/Aonodensetsu/prev_gen/blob/main/WIKI.md'
Repository = 'https://github.com/Aonodensetsu/prev_gen'
Changelog = 'https://github.com/Aonodensetsu/prev_gen/blob/main/CHANGELOG.md'
[project.scripts]
prev_gen = 'prev_gen.scripts:prev_gen'
[tool.setuptools.package-data]
prev_gen = [
'example.txt',
'nunito.ttf'
]
[tool.pytest.ini_options]
minversion = '6.0'
addopts = '--cov=prev_gen'
python_files = [
'test.py'
]