-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.45 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>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "phardwareitk"
version = "0.1.3.1"
authors = [
{ name="Pheonix Studios", email="[email protected]" },
{ name="Akshobhya Sasun", email="[email protected]" },
{ name="Aarav Nayak", email="[email protected]" }
]
description = "PHardwareITK, or Pheonix Hardware Interface Toolkit, is a comprehensive Python module. This toolkit provides a variety of functions and utilities to assist developers in creating complex systems/programs. [Includes PLTEC, a custom language to .exe/.elf/.aef/.asm/.o converter [https://github.com/AkshuDev/PLTEC]]"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["pysdl2", "pysdl2-dll", "PyOpenGL"]
[project.urls]
Homepage = "https://github.com/AkshuDev/PHardwareITK"
Issues = "https://github.com/AkshuDev/PHardwareITK/issues"
Website = "https://paperexcahange.wixsite.com/pheonixstudios"
Source = "https://github.com/AkshuDev/PHardwareITK"
[tool.setuptools]
packages = ["phardwareitk",
"phardwareitk.CLI",
"phardwareitk.ErrorSystem",
"phardwareitk.Extensions",
"phardwareitk.FileSystem",
"phardwareitk.GUI",
"phardwareitk.HGame",
"phardwareitk.ModuleController",
"phardwareitk.PLTEC",
"phardwareitk.System"
]