update for releasing to PyPI

This commit is contained in:
lilydjwg 2015-11-11 14:20:49 +08:00
parent 986773c814
commit af14b39833
2 changed files with 32 additions and 6 deletions

View file

@ -3,6 +3,9 @@
.. image:: https://travis-ci.org/lilydjwg/nvchecker.svg .. image:: https://travis-ci.org/lilydjwg/nvchecker.svg
:alt: Build Status :alt: Build Status
:target: https://travis-ci.org/lilydjwg/nvchecker :target: https://travis-ci.org/lilydjwg/nvchecker
.. image:: https://badge.fury.io/py/nvchecker.png
:alt: PyPI version
:target: http://badge.fury.io/py/nvchecker
Dependency Dependency
========== ==========

View file

@ -7,6 +7,16 @@ import nvchecker
setup( setup(
name = 'nvchecker', name = 'nvchecker',
version = nvchecker.__version__, version = nvchecker.__version__,
author = 'lilydjwg',
author_email = 'lilydjwg@gmail.com',
description = 'New version checker for software',
license = 'MIT',
keywords = 'new version build check',
url = 'https://github.com/lilydjwg/nvchecker',
long_description = open('README.rst', encoding='utf-8').read(),
platforms = 'any',
zip_safe = True,
packages = find_packages(exclude=["tests"]), packages = find_packages(exclude=["tests"]),
install_requires = ['tornado>=4.1', 'setuptools'], install_requires = ['tornado>=4.1', 'setuptools'],
tests_require = [ tests_require = [
@ -22,10 +32,23 @@ setup(
}, },
package_data = {'nvchecker': ['source/vcs.sh']}, package_data = {'nvchecker': ['source/vcs.sh']},
author = 'lilydjwg', classifiers = [
author_email = 'lilydjwg@gmail.com', "Development Status :: 4 - Beta",
description = 'New version checker for software', "Environment :: Console",
license = 'MIT', "Intended Audience :: Developers",
keywords = 'new version build check', "Intended Audience :: System Administrators",
url = 'https://github.com/lilydjwg/nvchecker', "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development",
"Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Software Distribution",
"Topic :: Utilities",
],
) )