-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.94 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
46
47
48
49
50
51
52
53
54
55
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=67",
"setuptools_scm[toml]>=7.1"
]
[project]
name = "g3w-admin-sentry-monitor"
dynamic = [
"version", # retrieve package version from git tags
"dependencies", # retrieve package dependencies from requirements.txt
"optional-dependencies" # retrieve development dependencies from requirements_dev.txt
]
authors = [ { name = "Gis3w snc", email = "info@gis3w.it" } ]
description = "G3W-SUITE module for application performance monitoring and error tracking via sentry.io"
readme = "README.md"
license = { text = "Mozilla Public License 2.0 (MPL 2.0)" }
classifiers = [
"Development Status :: 3 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
]
# requires-python = ">=3.10"
[project.urls]
"Homepage" = "https://github.com/g3w-suite/g3w-admin-sentry-monitor"
"Bug Tracker" = "https://github.com/g3w-suite/g3w-admin-sentry-monitor/issues"
[tool.setuptools]
# Manual package discovery
# packages = ["sentry_monitor"]
# package-dir = { sentry_monitor = "sentry_monitor" }
#
# https://setuptools.pypa.io/en/latest/userguide/package_discovery.html#automatic-discovery
#
# NB: see also: MANIFEST.in
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.dynamic.optional-dependencies]
dev = { file = ["requirements_dev.txt"] }
[tool.setuptools_scm]
fallback_version = "0.0.0-alpha.0"
write_to = "_version.py" # hardcode version number in a file
#
# Or alternatively retrieve it at runtime:
# https://github.com/pypa/setuptools_scm/#retrieving-package-version-at-runtime