-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpyproject.toml
34 lines (30 loc) · 951 Bytes
/
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
[project]
name = "pagan"
version = "0.4.4"
authors = [{ name = "David Bothe", email = "[email protected]" }]
license = {file = "LICENSE"}
description = "python avatar generator for absolute nerds"
keywords = ["avatar, identicon, generator"]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Environment :: Web Environment",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
]
[tool.setuptools]
packages = ["pagan"]
[project.urls]
"Homepage" = "https://github.com/daboth/pagan"
"Download" = "https://github.com/daboth/pagan/tarball/0.4.4"
[build-system]
requires = [
"setuptools",
"Pillow>=2.3.0",
]
[project.scripts]
pagan = "pagan:main"