summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg32
1 files changed, 29 insertions, 3 deletions
diff --git a/setup.cfg b/setup.cfg
index f661287..bbd073e 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -2,14 +2,27 @@
name = pyssg
author = David Luevano Alvarado
author_email = david@luevano.xyz
-summary = A Static Site Generator using markdown files
+summary = A Static Site Generator using markdown files.
description_file = README.md
license = GPLv3
home_page = https://github.com/luevano/pyssg
classifiers =
- Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: Unix
+ Programming Language :: Python
+ Programming Language :: Python :: 3
+ Programming Language :: Python :: 3.7
+ Programming Language :: Python :: 3.8
+ Programming Language :: Python :: 3.9
+ Programming Language :: Python :: 3.10
+ Programming Language :: Python :: 3.11
+ Programming Language :: Python :: 3 :: Only
+ Topic :: Communications :: Email :: Filters
+ Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
+ Topic :: Internet :: WWW/HTTP :: Site Management
+ Topic :: Software Development :: Documentation
+ Topic :: Software Development :: Libraries :: Python Modules
+ Topic :: Text Processing :: Filters
Topic :: Text Processing :: Markup :: HTML
Topic :: Text Processing :: Markup :: Markdown
keywords =
@@ -18,6 +31,7 @@ keywords =
site
generator
markdown
+ website
[files]
packages =
@@ -34,7 +48,19 @@ console_scripts =
package_dir =
= src
packages = find:
-include_package_data=True
+include_package_data = True
[options.packages.find]
where = src
+
+[options.package_data]
+pymdvar = py.typed
+
+[flake8]
+max-line-length = 160
+per-file-ignores =
+ __init__.py: W292
+
+[pbr]
+skip_authors = True
+skip_changelog = True \ No newline at end of file