-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.08 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "SETS"
version = "2023.4b192"
authors = [
{ name="Mara 'Sizer' Morrigan", email="[email protected]" },
{ name="Stephen Hill", email="[email protected]" },
{ name="Liraal2" },
{ name="Serious Table" },
{ name="Shinga" },
]
description = "A Star Trek Online build tool in Python"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = ["star trek online"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Games/Entertainment",
"Development Status :: 4 - Beta"
]
dependencies = [
"Pillow>=8.3.1",
"requests-html==0.10.0",
"requests",
"numpy",
"tkmacosx; sys_platform == 'darwin'"
]
[project.urls]
homepage = "https://stobuilds.com/SETS/"
repository = "https://github.com/STOCD/SETS"
[tool.setuptools_scm]
write_to = "SETS/_version.py"