summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2023-02-14 01:38:17 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2023-02-14 01:38:17 -0600
commit0e46f2cd0a2f6a972da76ec92d10bb77cd3c7f37 (patch)
tree941ae7aecf3221865de7a0c5823fae48bee20592 /setup.cfg
parenta7f3be739f23cb2a8fbadd61785855e0dfa5b06a (diff)
add boilerplate code, rename repo
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg33
1 files changed, 33 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..640e3e0
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,33 @@
+[metadata]
+name = pymdvar
+author = David Luevano Alvarado
+author_email = david@luevano.xyz
+summary = Python-Markdown extension to insert variables
+description_file = README.md
+license = GPLv3
+home_page = https://github.com/luevano/pymdvar
+classifiers =
+ Programming Language :: Python :: 3
+ License :: OSI Approved :: GNU General Public License v3 (GPLv3)
+ Operating System :: Unix
+ Topic :: Text Processing :: Markup :: HTML
+ Topic :: Text Processing :: Markup :: Markdown
+keywords =
+ python
+ markdown
+
+[files]
+packages =
+ pymdvar
+
+[bdist_wheel]
+universal = 0
+
+[options]
+package_dir =
+ = src
+packages = find:
+include_package_data=True
+
+[options.packages.find]
+where = src