nvchecker/setup.py

60 lines
1.7 KiB
Python
Raw Normal View History

2013-07-03 06:08:50 +00:00
#!/usr/bin/env python3
# vim:fileencoding=utf-8
from setuptools import setup, find_packages
import nvchecker
2013-07-03 06:08:50 +00:00
setup(
name = 'nvchecker',
version = nvchecker.__version__,
2015-11-11 06:20:49 +00:00
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',
2018-05-06 03:48:24 +00:00
zip_safe = False,
2015-11-11 06:20:49 +00:00
2015-11-07 16:50:52 +00:00
packages = find_packages(exclude=["tests"]),
install_requires = ['setuptools', 'structlog', 'tornado', 'pycurl'],
extras_require = {
'vercmp': ['pyalpm'],
},
2015-11-11 05:39:56 +00:00
tests_require = [
2015-11-04 11:14:55 +00:00
'pytest',
2017-07-04 09:04:29 +00:00
'pytest-asyncio',
'pytest-xdist',
2015-11-05 15:14:05 +00:00
'flaky',
2015-11-04 11:14:55 +00:00
],
2013-07-03 06:08:50 +00:00
entry_points = {
'console_scripts': [
'nvchecker = nvchecker.main:main',
2013-09-05 08:53:19 +00:00
'nvtake = nvchecker.tools:take',
2014-01-08 13:24:13 +00:00
'nvcmp = nvchecker.tools:cmp',
2013-07-03 06:08:50 +00:00
],
},
2015-11-11 05:39:56 +00:00
package_data = {'nvchecker': ['source/vcs.sh']},
2013-07-03 06:08:50 +00:00
2015-11-11 06:20:49 +00:00
classifiers = [
2017-12-08 07:45:53 +00:00
"Development Status :: 5 - Production/Stable",
2015-11-11 06:20:49 +00:00
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"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.5",
2017-07-04 09:04:29 +00:00
"Programming Language :: Python :: 3.6",
2015-11-11 06:20:49 +00:00
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development",
"Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Software Distribution",
"Topic :: Utilities",
],
2013-07-03 06:08:50 +00:00
)