-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
38 lines (34 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "smooth-operator-agent-tools"
version = "1.0.106"
authors = [
{ name="Smooth Operator", email="[email protected]" },
]
description = "Python client library for the Smooth Operator agent tools API."
# Using the standard SPDX format
license = "MIT"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"requests>=2.20.0",
]
[project.urls]
# Corrected Homepage URL
"Homepage" = "https://github.com/fstandhartinger/smooth-operator-client-python"
"Bug Tracker" = "https://github.com/fstandhartinger/smooth-operator-client-python/issues"
[tool.setuptools]
# Include package data specified in MANIFEST.in
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*", "__pycache__", "*.py[cod]", "*$py.class", "*.egg-info", "dist", "build"]
namespaces = false