-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 763 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 763 Bytes
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
[project]
name = "scryfall-set"
version = "0.2"
description = "Overview stats for MTG sets and searches using the Scryfall API"
dependencies = [
"requests",
"pytest",
]
requires-python = ">= 3.12"
readme = "README.md"
authors = [
{ name="thrly", email="o.thrly@gmail.com" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
# defines the command and script that will be used to run
[project.scripts]
scry = "scryfall_set.main:main"
[project.urls]
repository = "https://github.com/thrly/scry"
issues = "https://github.com/thrly/scry/issues"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["scryfall_set*"]