-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
61 lines (50 loc) · 1.33 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
[build-system]
requires = [
"setuptools",
"setuptools-scm",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "discord-advert-framework"
authors = [
{name = "David Hozic"}
]
description = "Framework for periodic advertisements on Discord"
readme = "README.rst"
requires-python = ">=3.9"
keywords = ["Discord", "Advertising", "Framework", "NFT", "Shilling"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies", "optional-dependencies", "version"]
[project.gui-scripts]
daf-gui="daf_gui:main.run"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
dependencies = {file = "requirements/mandatory.txt"}
version = {attr = "daf.VERSION"}
[tool.setuptools.dynamic.optional-dependencies]
docs = {file = "requirements/docs.txt"}
voice = {file = "requirements/voice.txt"}
sql = {file = "requirements/sql.txt"}
testing = {file = "requirements/testing.txt"}
web = {file = "requirements/web.txt"}
[tool.setuptools.dynamic.optional-dependencies.all]
file = [
"requirements/voice.txt",
"requirements/sql.txt",
"requirements/web.txt"
]
[tool.setuptools.packages.find]
where = [
"src"
]
[tool.pytest.ini_options]
markers = [
"group_remote",
]
asyncio_mode = "auto"