-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (45 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# pyproject.toml
[build-system]
# AVOID CHANGING REQUIRES: IT WILL BE UPDATED BY PYSCAFFOLD!
requires = ["setuptools>=46.1.0", "wheel",]
build-backend = "setuptools.build_meta"
[project]
name = "uml2django"
version = "0.0.8"
description = "Generate Django code from PlantUML class diagrams."
readme = "README.rst"
authors = [
{ name = "Joao Cunha", email = "[email protected]" }
]
license = { file = "LICENSE.txt" }
# Add here all kinds of additional classifiers as defined under
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Environment :: Console",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: Public Domain",
"Operating System :: OS Independent",
"Topic :: Software Development :: Code Generators",
]
# keywords = ["feed", "reader", "tutorial"]
requires-python = ">=3.8"
dependencies = [
"cheetah3",
"inflect",
"redbaron",
]
[project.optional-dependencies]
dev = [
"tox",
]
[project.urls]
Homepage = "https://github.com/j-hanks/uml2django"
[tool.setuptools.packages.find]
where = ["src"]
# exclude = ["tests", "docs"]
[tool.setuptools]
[project.scripts]
uml2django = "uml2django.main:run"