File tree Expand file tree Collapse file tree 2 files changed +45
-41
lines changed
Expand file tree Collapse file tree 2 files changed +45
-41
lines changed Original file line number Diff line number Diff line change 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
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments