-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.11 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
# Set up the meta data of the project
[project]
name = "aa_pytools"
version = "1.0.0"
description = "This project contains useful tools to work with Automation Anywhere + Python"
readme = "README.md"
requires-python = ">=3.13"
license = "MIT"
license-files = ["LICEN[CS]E*"]
authors = [{ name = "AND3SIL4", email = "devaul.fs@gmail.com" }]
maintainers = [{ name = "AND3SIL4", email = "devaul.fs@gmail.com" }]
keywords = ["Automation Anywhere", "Integration", "Python", "RPA"]
# todo: improve the classifiers when finish the package. https://pypi.org/classifiers
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/AND3SIL4/aa-pytools"
Issues = "https://github.com/AND3SIL4/aa-pytools/issues"
[dependency-groups]
dev = [
"build>=1.3.0",
"pytest>=9.0.2",
"ruff>=0.14.11",
"twine>=6.2.0",
]
# We shall choose a build back end to make the build
[build-system]
requires = ["setuptools >= 80.9.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["aa_pytools*"]