diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2021-05-04 03:36:01 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2021-05-04 03:36:01 -0600 |
commit | af070051c1b9eafdd6e98d207f73c4793587c1f5 (patch) | |
tree | aab4b917f08c0b1ca1fbeb3115a12571b3c8b301 | |
parent | ee59b09650160e0c32415c2e0e0ea961af090caa (diff) |
Prepare barebones package info
-rw-r--r-- | pyproject.toml | 6 | ||||
-rw-r--r-- | setup.cfg | 38 | ||||
-rw-r--r-- | setup.py | 6 | ||||
-rw-r--r-- | src/pyssg/__init__.py | 0 |
4 files changed, 50 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e74c9ec --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,6 @@ +[build-system] +requires = [ + "setuptools>=42", + "wheel" +] +build-backend = "setuptools.build_meta" diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..38d0126 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,38 @@ +[metadata] +name = pyssg +author = David Luevano Alvarado +author-email = david@luevano.xyz +maintainer = David Luevano Alvarado +maintainer-email = david@luevano.xyz +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 + Topic :: Text Processing :: Markup :: HTML + Topic :: Text Processing :: Markup :: Markdown +keywords = + python + static + site + generator + markdown + minimalist + +[files] +packages = + pyssg + +[bdist_wheel] +universal = 0 + +[options] +package_dir = + = src +packages = find: + +[options.packages.find] +where = src diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..009dc0e --- /dev/null +++ b/setup.py @@ -0,0 +1,6 @@ +from setuptools import setup + +setup( + setup_requires=['pbr'], + pbr=True +) diff --git a/src/pyssg/__init__.py b/src/pyssg/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/pyssg/__init__.py |