-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (61 loc) · 2.34 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PheonixAppAPI"
version = "0.2.7.1"
authors = [
{ name="Pheonix Studios", email="[email protected]" },
{ name="Akshobhya Sasun", email="[email protected]" },
{ name="Aarav Nayak", email="[email protected]" }
]
description = "Pheonix App 1.0 is a powerful Python application designed to streamline various tasks, from managing files to playing mini-games. This module is a API for this APP. NOTE: updates will come for the app. For Showcases view AkshobhyaEverything channel or the Pheonix Studios Developer channel"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"wikipedia",
"xlsxwriter",
"requests",
"cryptography",
"PyCryptodome",
"sympy",
"pysdl2",
"pysdl2-dll",
"PyOpenGL"
]
[project.urls]
Homepage = "https://github.com/AkshuDev/PheonixAppAPI"
Issues = "https://github.com/AkshuDev/PheonixAppAPI/issues"
Website = "https://paperecahange.wixsite.com/pheonixstudios"
Source = "https://github.com/AkshuDev/PheonixAppAPI"
[tool.setuptools]
packages = ["PheonixAppAPI",
"PheonixAppAPI.apis",
"PheonixAppAPI.Scripts",
"PheonixAppAPI.pheonixapp",
"PheonixAppAPI.apis.Modules",
"PheonixAppAPI.apis.Modules.lib",
"PheonixAppAPI.apis.Modules.Pre",
"PheonixAppAPI.apis.Modules.Pre.PheonixJson",
"PheonixAppAPI.apis.Modules.Pre.PheonixExceptions",
"PheonixAppAPI.apis.Modules.Pre.phardwareitk",
"PheonixAppAPI.apis.Modules.Pre.phardwareitk.CLI",
"PheonixAppAPI.apis.Modules.Pre.phardwareitk.ErrorSystem",
"PheonixAppAPI.apis.Modules.Pre.phardwareitk.Extensions",
"PheonixAppAPI.apis.Modules.Pre.phardwareitk.FileSystem",
"PheonixAppAPI.apis.Modules.Pre.phardwareitk.GUI",
"PheonixAppAPI.apis.Modules.Pre.phardwareitk.HGame",
"PheonixAppAPI.apis.Modules.Pre.phardwareitk.ModuleController",
"PheonixAppAPI.apis.Modules.Pre.phardwareitk.PLTEC",
"PheonixAppAPI.apis.Modules.Pre.phardwareitk.System",
"PheonixAppAPI.pheonixapp.files",
"PheonixAppAPI.pheonixapp.files.Mapper",
"PheonixAppAPI.pheonixapp.files.ObjectDetector",
"PheonixAppAPI.pheonixapp.files.GUI",
"PheonixAppAPI.pheonixapp.files._PCD_"
]