forked from dscsnu/pingv4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1.32 KB
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
[project]
name = "pingv4"
version = "0.1.0"
description = "A high-performance Connect Four library with a graphical game interface and bot framework."
license = { text = "MIT" }
readme = "README.md"
authors = [{ name = "lalitm1004", email = "lalitm1004@gmail.com" }, { name="Rohit J G", email="jgrohit.exe@gmail.com" }, { name = "Daksh Jain", email = "jaindaksh006@gmail.com" }]
requires-python = ">=3.9"
dependencies = ["pydantic>=2.12.5", "pygame>=2.6.1"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Rust",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
[project.urls]
Repository = "https://github.com/dscsnu/pingv4"
Homepage = "https://github.com/dscsnu/pingv4"
Issues = "https://github.com/dscsnu/pingv4/issues"
[project.scripts]
pingv4 = "pingv4:main"
[tool.maturin]
module-name = "pingv4._core"
python-packages = ["pingv4"]
python-source = "src"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"