-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·52 lines (46 loc) · 1.39 KB
/
Copy pathpyproject.toml
File metadata and controls
executable file
·52 lines (46 loc) · 1.39 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=61.0.0,<69.3.0"]
build-backend = "setuptools.build_meta:__legacy__"
[project]
name = "pyipam"
version = "0.1.0"
requires-python = ">= 3.10"
dependencies = [
"pytz",
"django<=5.2",
"djangorestframework",
]
authors = [
{name = "Martin Schröder", email = "team@pyscada.org"},
]
description = "Python and Django based IPAM"
readme = "README.rst"
license = {text = "AGPLv3"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Environment :: Console",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: JavaScript",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
[project.urls]
Homepage = "https://www.github.com/trombastic/PyIPAM"
Documentation = "https://pyipam.readthedocs.io"
Source = "https://github.com/trombastic/PyIPAM"
Tracker = "https://github.com/trombastic/PyIPAM/issues"
[tool.black]
target-version = ["py310"]
force-exclude = "tests/test_runner_apps/tagged/tests_syntax_error.py"
[tool.isort]
profile = "black"
default_section = "THIRDPARTY"
known_first_party = "pyipam"
[tool.setuptools.packages.find]
include = ["pyipam*"]