-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (36 loc) · 1.14 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "smartinspect-py"
version = "4.0.4"
authors = [
{ name = "Sergey Udachin", email = "sergey.udachin@code-partners.com" },
]
maintainers = [
{ name = "Sergey Zhukov", email = "sergey@code-partners.com" },
]
description = "Client library to integrate SmartInspect logging into Python applications."
license = { text = "MIT License" }
readme = "README.rst"
requires-python = ">=3.7"
dependencies = ["cryptography>=42.0.5"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: System :: Logging",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = [
"smartinspect",
"logging",
]
[project.urls]
Homepage = "https://code-partners.com/offerings/smartinspect/"
Issues = "https://github.com/Code-Partners/smartinspect-python-library/issues"
[tool.setuptools.packages.find]
where = ["src"]