-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (44 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
[project]
name = "geny"
description = "An extendable file generator"
authors = [{ name = "Leo Neto", email = "[email protected]" }]
maintainers = [{ name = "Leo Neto", email = "[email protected]" }]
requires-python = ">=3.6"
license = { file = "LICENSE" }
readme = "README.md"
version = "0.1.3"
keywords = [
"automation",
"files",
"generators",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"Click>=8.1",
"jinja2>=3.1",
"inflection>=0.5.1",
"rich>=13.3",
]
[project.urls]
Homepage = "https://github.com/oleoneto/geny"
Issues = "https://github.com/oleoneto/geny/issues"
[project.scripts]
geny = "geny.cli.cli:cli"