-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.4 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
[build-system]
requires = [
"setuptools",
"setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "create_lilypad_module"
version = "0.1.46"
description = "A CLI tool to quickly scaffold and initialize new Lilypad module projects with boilerplate code and configuration."
readme = "README.md"
keywords = [
"Lilypad",
"Lilypad Network",
"Lilypad module",
"module-generator",
"project-generator",
"boilerplate-generator",
"scaffolding-tool",
"project scaffolding",
"CLI",
]
authors = [
{name = "Devlin Rocha", email = "[email protected]"}
]
maintainers = [
{name = "Devlin Rocha", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/DevlinRocha/create-lilypad-module"
"Bug Tracker" = "https://github.com/DevlinRocha/create-lilypad-module/issues"
Documentation = "https://github.com/DevlinRocha/create-lilypad-module#readme"
Source = "https://github.com/DevlinRocha/create-lilypad-module"
[project.scripts]
create-lilypad-module = "create_lilypad_module:main"