-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (64 loc) · 2.38 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dev_template"
version = "1.1.6"
description = "A streamlined tool for quickly setting up Python project directories with simplicity and speed. Ideal for developers and hobbyists, dev_template offers interactive prompts, cross-platform compatibility, and robust configuration management to ensure a consistent project structure and efficient dependency management."
readme = "README.md"
requires-python = ">=3.6"
dependencies = [
"pydantic==2.7.4",
"tqdm==4.66.4",
"colorama==0.4.6",
"prompt_toolkit>=3.0.36,<3.1",
"questionary==2.0.1",
]
authors = [
{name = "Kennedy, D."},
{name = "Kennedy, D.", email = "kennedy@mylaptop.dev"}
]
license = {text = "CC0-1.0"}
keywords = ["python", "project setup", "automation", "development", "project structure", "dependency management", "quick start", "hobbyist", "tooling", "template"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development",
"Topic :: Utilities",
"Natural Language :: English",
"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",
]
[project.urls]
Homepage = "https://github.com/http-kennedy/dev_template"
Source = "https://github.com/http-kennedy/dev_template"
Tracker = "https://github.com/http-kennedy/dev_template/issues"
Documentation = "https://github.com/http-kennedy/dev_template/blob/main/README.md"
[project.scripts]
dev_template = "dev_template.dev_template:main"
[tool.hatch.build.targets.wheel]
packages = ["src/dev_template"]
[project.optional-dependencies]
tests = ["pytest"]
[tool.hatch.envs.default]
dependencies = ["pytest"]
features = ["tests"]
[tool.hatch.envs.default.scripts]
test = "hatch run test:run"
[tool.hatch.envs.test]
dependencies = ["pytest"]
[tool.hatch.envs.test.scripts]
run = "PYTHONPATH=src pytest"
[tool.hatch.build]
include = [
"src/dev_template/**"
]