Skip to content
This repository has been archived by the owner on Sep 24, 2021. It is now read-only.

Commit

Permalink
Update to improve the use of PyPI
Browse files Browse the repository at this point in the history
Changes:
* Add classifiers
* Add __init__.py with package descriptions
* Update author and email field import in setup.py
  • Loading branch information
dmytrohoi authored Jan 10, 2020
1 parent 1e79d4d commit 22d26f8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
3 changes: 3 additions & 0 deletions qsb/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
__version__ = "0.4.1"
__author__ = "Dmytro Hoi"
__email__ = "[email protected]"
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
packages=setuptools.find_packages(),
url="https://github.com/dmytrohoi/pelican-qsb",
license="MIT License",
author="dmytrohoi",
author_email="[email protected]",
author=qsb.__author__,
author_email=qsb.__email__,
description="Simple helper for automation Pelican-based site building",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -23,5 +23,9 @@
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Pelican",
"Framework :: Pelican :: Plugins",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools"
],
)
)

0 comments on commit 22d26f8

Please sign in to comment.