-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
36 lines (32 loc) · 1.06 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
[build-system]
requires = ["setuptools>=67.0.0", "wheel", "setuptools_scm[toml]>=6.2"]
[project]
name = "log4mongo"
dynamic = ["version"]
authors = [
{name = "Oz N Tiram", email = "[email protected]"},
{name = "Valdimir Goeje", email = "[email protected]"}
]
readme = "README.rst"
description = "Python logging handler for MongoDB"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: System Administrators",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development",
]
[tool.setuptools]
packages = ["log4mongo"]
[project.urls]
homepage = "https://github.com/log4mongo/log4mongo-python"
[tool.setuptools_scm]
write_to = "log4mongo/_version.py"