summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2021-05-05 00:20:50 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2021-05-05 00:20:50 -0600
commit43ed04c6740a3ac11f7e2fc6d75429951536286e (patch)
tree388bb3f6432dca25000f29295b10a73056bc5fd9 /setup.cfg
parentaf070051c1b9eafdd6e98d207f73c4793587c1f5 (diff)
initial template creation, barebones arg parser
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg13
1 files changed, 8 insertions, 5 deletions
diff --git a/setup.cfg b/setup.cfg
index 38d0126..8bebc17 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,13 +1,13 @@
[metadata]
name = pyssg
author = David Luevano Alvarado
-author-email = david@luevano.xyz
+author_email = david@luevano.xyz
maintainer = David Luevano Alvarado
-maintainer-email = david@luevano.xyz
+maintainer_email = david@luevano.xyz
summary = A Static Site Generator using markdown files
-description-file = README.md
+description_file = README.md
license = GPLv3
-home-page = https://github.com/luevano/pyssg
+home_page = https://github.com/luevano/pyssg
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
@@ -20,7 +20,6 @@ keywords =
site
generator
markdown
- minimalist
[files]
packages =
@@ -29,6 +28,10 @@ packages =
[bdist_wheel]
universal = 0
+[entry_points]
+console_scripts =
+ pyssg = pyssg:main
+
[options]
package_dir =
= src