Skip to content

Commit b8df7fd

Browse files
committed
Update Python Versions
1 parent 9f78cf3 commit b8df7fd

File tree

3 files changed

+31
-28
lines changed

3 files changed

+31
-28
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,5 @@ nosetests.xml
4040

4141
# Ignore ,cover files from coverage tool.
4242
*,cover
43+
44+
.idea/

.travis.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1+
dist: xenial
12
language: python
23
sudo: false
34
python:
4-
- '3.3'
5-
- '3.4'
65
- '3.5'
7-
- '3.5-dev'
86
- '3.6'
9-
- '3.6-dev'
10-
- '3.7-dev'
7+
- '3.7'
8+
- '3.8-dev'
9+
- 'nightly'
1110
env:
1211
- PYTHONPATH=.
1312
install:

setup.py

Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
#
3-
# Copyright 2014 Ryan Peck
3+
# Copyright 2019 Ryan Peck
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
@@ -20,28 +20,30 @@
2020

2121

2222
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]",
2626
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",
2929
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"],
4749
)

0 commit comments

Comments
 (0)