-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 1.09 KB
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
[build-system]
requires = ['setuptools>=61.0']
build-backend = 'setuptools.build_meta'
[project]
name = 'pydeckard'
description = 'Un bot de Telegram para el canal de Python Canarias'
requires-python = '>=3.10'
authors = [
{ name = 'Python Canarias', email = 'info@pythoncanarias.es' },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Communications :: Chat",
]
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
dynamic = ['dependencies', 'readme', 'optional-dependencies']
version="0.1.8"
[project.urls]
Homepage = "https://github.com/pythoncanarias/pydeckard.git"
[tool.setuptools.dynamic]
readme = { file = ['README.md', ] }
dependencies = { file = 'requirements.txt' }
[tool.setuptools.dynamic.optional-dependencies]
dev = { file = ["dev-requirements.txt"] }
[tool.setuptools.packages.find]
include = ["pydeckard*"]
where = ["."]
[project.scripts]
pydeckard = "pydeckard.bot:main"
[tool.ruff]
line-length = 120
target-version = "py312"