-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
45 lines (38 loc) · 1.48 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
[build-system]
requires = [
"build == 1.2.*",
"setuptools == 74.1.*",
"setuptools-git-versioning == 2.0.*",
"twine == 5.1.*",
"wheel == 0.44.*"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ['games/*/schemas/*.json.template', 'games/*/DBExport.json', 'core/schemas/table_schemas/*.json', 'games/LAKELAND/features/*.json']
[tool.setuptools-git-versioning]
enabled = true
[project]
name = "opengamedata-core"
dynamic = ["version", "dependencies"]
authors = [
{ name="Luke Swanson", email="[email protected]" },
{ name="David Gagnon", email="[email protected]" }
]
description = "A package for retrieving and processing event-based video game data. Additional authors: Nick Spevacek, Renee Li, John McCloskey, Zach Studdiford, Glenn Palmer, Haishuo Chen, Daus, Ameya Kshirsagar, Yunqing Xiao, Erik Harpstead, Manuel Jesus Gomez Moratilla"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/opengamedata/opengamedata-core"
"Bug Tracker" = "https://github.com/opengamedata/opengamedata-core/issues"
"Documentation" = "https://opengamedata-doc.readthedocs.io/en/latest/index.html"