-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
34 lines (32 loc) · 1.13 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="autoupgrade-ng",
version="0.3.0",
author="Walter Purcaro",
author_email="[email protected]",
description="Automatic upgrade of PyPI packages",
long_description=open('README.rst').read(),
keywords=['autoupgrade', 'pip-upgrade', 'pip'],
packages=['autoupgrade'],
include_package_data=True,
url="https://github.com/vuolter/autoupgrade",
download_url="https://github.com/vuolter/autoupgrade/releases",
install_requires=['pip'],
obsoletes=['autoupgrade'],
license='MIT License',
zip_safe=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: System :: Software Distribution",
"Topic :: Utilities"
]
)