-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyproject-init"
version = "0.1.0"
authors = [
{name = "Mizokuiam", email = "your@email.com"},
]
description = "A CLI tool to generate pyproject.toml files with common development tools"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
]
dependencies = [
"typer[all]>=0.9.0,<1.0.0",
"toml>=0.10.2,<1.0.0",
]
[project.scripts]
pyproject-init = "pyproject_init:app"
[project.urls]
"Homepage" = "https://github.com/Mizokuiam/PyProject-Init"
"Bug Tracker" = "https://github.com/Mizokuiam/PyProject-Init/issues"