-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (37 loc) · 1.14 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
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "guipylib"
version = "0.0.0"
description = "UI library for pygame"
readme = "README.md"
authors = ["Casey Culbertson, Jason Zhang <[email protected]>"]
license = "MIT"
repository = "https://github.com/Zjjc123/guipy"
homepage = "https://github.com/Zjjc123/guipy"
# Keywords description https://python-poetry.org/docs/pyproject/#keywords
keywords = [] #! Update me
# Pypi classifiers: https://pypi.org/classifiers/
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
packages = [
{ include = "guipy"},
{ include = "guipy/**/*.py"}
]
[tool.poetry.dependencies]
python = "^3.7"
pygame = "^2.1.2"
[tool.poetry.dev-dependencies]
Sphinx = "^5.1.1"
sphinx-rtd-theme = "^1.0.0"
sphinx-autoapi = "^1.9.0"
black = "^22.6.0"