-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.34 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
[build-system]
requires = ["scikit-build-core>=0.3.3"]
build-backend = "scikit_build_core.build"
[project]
name = "django-collectd-rest"
version = "0.2.6"
authors = [
{name = "Matwey V. Kornilov", email = "matwey.kornilov@gmail.com"},
]
description = "A simple Django application to demonstrate RRD plots generated by collectd or any other rrd data"
readme = "README.md"
license = {text = "BSD-2-Clause"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP",
]
requires-python = ">= 3.7"
dependencies = [
"djangorestframework",
]
[project.optional-dependencies]
dev = [
"mock",
"pytest",
"pytest-django",
]
[project.urls]
Repository = "https://github.com/matwey/django-collectd-rest.git"
Issues = "https://github.com/matwey/django-collectd-rest/issues"
[tool.scikit-build]
cmake.verbose = true
wheel.packages = ["src/collectd_rest"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
django_find_project = false
pythonpath = "."
testpaths = [
"src/collectd_rest",
"tests",
]