File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55from netrc import netrc
66
77try :
8- from urllib .parse import urlencode , urlparse
8+ from urllib .parse import urlparse
99except ImportError :
10- from urllib import urlencode , urlparse
10+ from urlparse import urlparse
1111
1212NETRC_FILE = os .path .join (os .environ ['HOME' ], ".netrc" )
1313
Original file line number Diff line number Diff line change 1313 version = version ,
1414 description = "Alerta unified command-line tool and SDK" ,
1515 long_description = readme ,
16+ url = "http://github.com/alerta/python-alerta" ,
1617 license = "MIT" ,
1718 author = "Nick Satterly" ,
1819 author_email = "nick.satterly@theguardian.com" ,
19- url = "http://github.com/alerta/python-alerta" ,
20- packages = ['alertaclient' ],
20+ packages = setuptools .find_packages (exclude = ['tests' ]),
2121 install_requires = [
2222 'Click' ,
2323 'requests' ,
2424 'tabulate' ,
2525 'pytz' ,
2626 'six'
2727 ],
28+ include_package_data = True ,
29+ zip_safe = False ,
2830 entry_points = {
2931 'console_scripts' : [
3032 'alerta = alertaclient.cli:cli'
3335 keywords = "alerta client unified command line tool sdk" ,
3436 classifiers = [
3537 'Development Status :: 5 - Production/Stable' ,
36- 'License :: OSI Approved :: MIT License ' ,
38+ 'Intended Audience :: Information Technology ' ,
3739 'Intended Audience :: System Administrators' ,
40+ 'Intended Audience :: Telecommunications Industry' ,
41+ 'License :: OSI Approved :: MIT License' ,
3842 'Programming Language :: Python :: 3.5' ,
3943 'Programming Language :: Python :: 3.4' ,
4044 'Programming Language :: Python :: 2.7' ,
You can’t perform that action at this time.
0 commit comments