-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 1.55 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
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "init-app"
version = "1.0.0"
requires-python = ">=3.10"
dependencies = [
"colorama>=0.4.6",
"pyfiglet>=1.0.4",
"readchar>=4.2.1",
"python-dotenv>=1.2.1",
"jinja2>=3.1.0"
]
authors = [
{name = "TechQuanta", email = "techquanta.community@gmail.com"},
{name="Ashmeet Singh", email="ashmeetsingh0123@gmail.com"},
]
description = "Interactive Python CLI for scaffolding backend projects (Flask, Django, FastAPI, etc.)"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Build Tools",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=24.0.0",
"isort>=6.0.0",
"jinja2>=3.1.0"
]
[project.scripts]
init-app = "create_app.engine.cli:main"
[project.urls]
Homepage = "https://github.com/TechQuanta/init-app"
Documentation = "https://github.com/TechQuanta/init-app#readme"
Source = "https://github.com/TechQuanta/init-app"
Tracker = "https://github.com/TechQuanta/init-app/issues"
[tool.black]
line-length = 88
target-version = ["py310", "py311", "py312"]
[tool.isort]
profile = "black"