-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add additional information to setup.py for PyPI.
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,7 +88,20 @@ def write_version_file(): | |
version=get_setup_version(), | ||
description='comic updater, mangafied', | ||
url='https://github.com/Hamuko/cum', | ||
author='Hamuko', | ||
author_email='[email protected]', | ||
license='Apache2', | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Console', | ||
'Intended Audience :: End Users/Desktop', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Topic :: Internet :: WWW/HTTP' | ||
], | ||
packages=find_packages(), | ||
install_requires=[ | ||
'alembic', | ||
|