Skip to content

Commit

Permalink
Updated license info
Browse files Browse the repository at this point in the history
  • Loading branch information
btr1975 committed May 18, 2018
1 parent 5c53a54 commit 4d61fdc
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 Ben Trachtenberg
Copyright (c) 2018 Ben Trachtenberg

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions __main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
from argparse import ArgumentParser
import module as mod
__author__ = 'Benjamin P. Trachtenberg'
__copyright__ = "Copyright (c) 2017, Benjamin P. Trachtenberg"
__copyright__ = "Copyright (c) 2018 Ben Trachtenberg"
__credits__ = 'Benjamin P. Trachtenberg'
__license__ = ''
__license__ = 'MIT'
__status__ = 'prod'
__version_info__ = (1, 0, 10, __status__)
__version__ = '.'.join(map(str, __version_info__))
Expand Down
2 changes: 1 addition & 1 deletion module/scripts/acl_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import ipaddresstools as ipv4
from ..utils import clean_list
__author__ = 'Benjamin P. Trachtenberg'
__copyright__ = "Copyright (c) 2017, Benjamin P. Trachtenberg"
__copyright__ = "Copyright (c) 2018 Ben Trachtenberg"
__credits__ = 'Benjamin P. Trachtenberg'
__license__ = 'MIT'
__status__ = 'dev'
Expand Down
6 changes: 3 additions & 3 deletions module/scripts/arestme.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import requests
import json
__author__ = 'Benjamin P. Trachtenberg'
__copyright__ = "Copyright (c) 2018, Benjamin P. Trachtenberg"
__credits__ = None
__license__ = 'The MIT License (MIT)'
__copyright__ = "Copyright (c) 2018 Ben Trachtenberg"
__credits__ = 'Benjamin P. Trachtenberg'
__license__ = 'MIT'
__status__ = 'prod'
__version_info__ = (1, 0, 2)
__version__ = '.'.join(map(str, __version_info__))
Expand Down
4 changes: 2 additions & 2 deletions module/scripts/directories_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import zipfile
import persistentdatatools as pdt
__author__ = 'Benjamin P. Trachtenberg'
__copyright__ = "Copyright (c) 2017, Benjamin P. Trachtenberg"
__copyright__ = "Copyright (c) 2018 Ben Trachtenberg"
__credits__ = 'Benjamin P. Trachtenberg'
__license__ = ''
__license__ = 'MIT'
__status__ = 'prod'
__version_info__ = (1, 0, 2, __status__)
__version__ = '.'.join(map(str, __version_info__))
Expand Down
2 changes: 1 addition & 1 deletion module/scripts/prefix_list_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import persistentdatatools as pdt
from ..utils import clean_list
__author__ = 'Benjamin P. Trachtenberg'
__copyright__ = "Copyright (c) 2017, Benjamin P. Trachtenberg"
__copyright__ = "Copyright (c) 2018 Ben Trachtenberg"
__credits__ = 'Benjamin P. Trachtenberg'
__license__ = 'MIT'
__status__ = 'prod'
Expand Down
2 changes: 1 addition & 1 deletion module/scripts/route_map_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import persistentdatatools as pdt
from ..utils import clean_list
__author__ = 'Benjamin P. Trachtenberg'
__copyright__ = "Copyright (c) 2017, Benjamin P. Trachtenberg"
__copyright__ = "Copyright (c) 2018 Ben Trachtenberg"
__credits__ = 'Benjamin P. Trachtenberg'
__license__ = 'MIT'
__status__ = 'prod'
Expand Down
4 changes: 2 additions & 2 deletions module/scripts/template_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
import os
# from .arestme import ARestMe
__author__ = 'Benjamin P. Trachtenberg'
__copyright__ = "Copyright (c) 2017, Benjamin P. Trachtenberg"
__copyright__ = "Copyright (c) 2018 Ben Trachtenberg"
__credits__ = 'Benjamin P. Trachtenberg'
__license__ = 'MIT'
__status__ = 'dev'
__status__ = 'prod'
__version_info__ = (2, 0, 2, __status__)
__version__ = '.'.join(map(str, __version_info__))
__maintainer__ = 'Benjamin P. Trachtenberg'
Expand Down
2 changes: 1 addition & 1 deletion module/utils/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import logging
__author__ = 'Benjamin P. Trachtenberg'
__copyright__ = "Copyright (c) 2017, Benjamin P. Trachtenberg"
__copyright__ = "Copyright (c) 2018 Ben Trachtenberg"
__credits__ = 'Benjamin P. Trachtenberg'
__license__ = 'MIT'
__status__ = 'prod'
Expand Down

0 comments on commit 4d61fdc

Please sign in to comment.