-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 1 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "CGOL"
version = "0.9.6"
description = "A whack Conway's Game of Life implementation."
readme = "README.md"
requires-python = ">=3"
license = {text = "GPL-3"}
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Games/Entertainment :: Simulation",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Natural Language :: English",
]
authors = [
{name = "Neido", email = "[email protected]"}
]
maintainers = [
{name = "Neido", email = "[email protected]"}
]
dependencies = [
"pygame",
"numpy",
]
[project.urls]
Homepage = "https://github.com/INeido/CGOL/"
Repository = "https://github.com/INeido/CGOL/"
Issues = "https://github.com/INeido/CGOL/issues"
[project.scripts]
cgol = "cgol.__main__:main"
[tool.setuptools.package-data]
cgol = ["icon.png"]