-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.18 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 = ["setuptools>=70","wheel","setuptools_scm[toml]>=8.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pytrobot"
dynamic = ["version"]
description = "A transactional robot framework for Python"
license = { text = "MIT" }
requires-python = ">=3.11"
readme = { file = "README.md", content-type = "text/markdown" }
urls = { homepage = "https://github.com/Batchuka/PyTRobot" }
authors = [
{ name = "Batchuka", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"tomli_w==1.0.0",
"setuptools_scm==8.1.0",
"invoke==2.2.0",
"boto3==1.26.141",
"click==8.1.7",
"setuptools==65.5.0",
"celery",
"pycurl"
]
# Scripts que podem ser executados a partir do CLI
[project.scripts]
pytrobot = "pytrobot.cli.__main__:cli"
# Configurações do setuptools
[tool.setuptools]
packages.find = { exclude = ["tests", "*.tests", "*.tests.*", "tests.*"] }
# Configurações do setuptools_scm para versionamento automático
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "dirty-tag"