Skip to content

Commit 3a35080

Browse files
committed
converting to twine
1 parent f60f413 commit 3a35080

File tree

2 files changed

+45
-41
lines changed

2 files changed

+45
-41
lines changed

pyproject.toml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "guildmaster-cli"
7+
version = "1.0.0"
8+
authors = [
9+
{name = "Damien Burks", email = "[email protected]"}
10+
]
11+
description = "A collection of scripts for managing Discord channels and other administrative tasks"
12+
readme = "README.md"
13+
requires-python = ">=3.12"
14+
classifiers = [
15+
"Programming Language :: Python :: 3",
16+
"License :: OSI Approved :: MIT License",
17+
"Operating System :: OS Independent",
18+
]
19+
dependencies = [
20+
"fire",
21+
"discord.py",
22+
]
23+
24+
[project.urls]
25+
Homepage = "https://github.com/devsecblueprint/guildmaster-cli"
26+
27+
[project.scripts]
28+
guildmaster = "guildmaster.cli:main"
29+
30+
[tool.setuptools]
31+
zip-safe = true
32+
include-package-data = true
33+
34+
[tool.setuptools.packages.find]
35+
where = ["src"]
36+
exclude = ["tests"]
37+
38+
[tool.setuptools.package-data]
39+
"*" = ["*.md"]
40+
41+
[tool.bumpver]
42+
current_version = "1.0.0"
43+
version_pattern = "MAJOR.MINOR.PATCH"
44+
commit = true
45+
tag = true

setup.cfg

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)