|
1 | 1 | #!/usr/bin/env python3 |
2 | 2 | # |
3 | | -# Copyright 2014 Ryan Peck |
| 3 | +# Copyright 2019 Ryan Peck |
4 | 4 | # |
5 | 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
6 | 6 | # you may not use this file except in compliance with the License. |
|
20 | 20 |
|
21 | 21 |
|
22 | 22 | setup( |
23 | | - name='ipgroup', |
24 | | - maintainer='Ryan Peck', |
25 | | - maintainer_email='[email protected]', |
| 23 | + name="ipgroup", |
| 24 | + maintainer="Ryan Peck", |
| 25 | + maintainer_email="[email protected]", |
26 | 26 | version=ipgroup.__version__, |
27 | | - url='https://github.com/RyPeck/python-ipgroup', |
28 | | - license='Apache License, Version 2.0', |
| 27 | + url="https://github.com/RyPeck/python-ipgroup", |
| 28 | + license="Apache License, Version 2.0", |
29 | 29 | classifiers=[ |
30 | | - 'Development Status :: 1 - Planning', |
31 | | - 'Intended Audience :: Developers', |
32 | | - 'Intended Audience :: System Administrators', |
33 | | - 'License :: OSI Approved :: Apache Software License', |
34 | | - 'Operating System :: OS Independent', |
35 | | - 'Programming Language :: Python', |
36 | | - 'Programming Language :: Python :: 3.3', |
37 | | - 'Programming Language :: Python :: 3.4', |
38 | | - 'Programming Language :: Python :: 3.5', |
39 | | - 'Programming Language :: Python :: 3.6', |
40 | | - 'Programming Language :: Python :: 3.7', |
41 | | - 'Topic :: Internet', |
42 | | - 'Topic :: Software Development :: Libraries', |
43 | | - 'Topic :: System :: Networking', |
44 | | - ], |
45 | | - description='Functions to gather info on a group of IPv4 or IPv6 Networks', |
46 | | - py_modules=['ipgroup'], |
| 30 | + "Development Status :: 3 - Alpha", |
| 31 | + "Intended Audience :: Developers", |
| 32 | + "Intended Audience :: Information Technology", |
| 33 | + "Intended Audience :: System Administrators", |
| 34 | + "Intended Audience :: Telecommunications Industry", |
| 35 | + "License :: OSI Approved :: Apache Software License", |
| 36 | + "Operating System :: OS Independent", |
| 37 | + "Programming Language :: Python", |
| 38 | + "Programming Language :: Python :: 3.5", |
| 39 | + "Programming Language :: Python :: 3.6", |
| 40 | + "Programming Language :: Python :: 3.7", |
| 41 | + "Topic :: Internet", |
| 42 | + "Topic :: Internet :: Log Analysis", |
| 43 | + "Topic :: Software Development :: Libraries", |
| 44 | + "Topic :: System :: Networking", |
| 45 | + "Topic :: Utilities", |
| 46 | + ], |
| 47 | + description="Functions to gather info on a group of IPv4 or IPv6 Networks", |
| 48 | + py_modules=["ipgroup"], |
47 | 49 | ) |
0 commit comments