-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (37 loc) · 1.24 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>=42", "wheel", "setuptools_scm[toml]>=6.2"]
[project]
name = "djangoviz"
requires-python = ">=3.6.0"
dynamic = ["version"]
description = "A visualization tool."
readme = "README.md"
authors = [{ name = "Yoni Davidson", email = "[email protected]" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
]
keywords = ["django", "erd", "visualization"]
dependencies = [
'django >= 2.2.0',
'graphqlclient >= 0.2.0',
]
[project.urls]
Homepage = "https://github.com/ariga/djangoviz"
[tool.setuptools_scm]
local_scheme = "no-local-version"