Skip to content

Commit

Permalink
prepare 0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Nov 19, 2016
1 parent e43f106 commit d10ec4b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 18 deletions.
33 changes: 17 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
except:
readme = ''

version = '0.7.3'
version = '0.7.4'

exec_dirs = [
'src/pif/bin/',
Expand All @@ -17,34 +17,35 @@
execs += [os.path.join(exec_dir, f) for f in os.listdir(exec_dir)]

setup(
name = 'pif',
version = version,
description = ("Public IP address checker."),
name='pif',
version=version,
description="Public IP address checker.",
long_description=readme,
classifiers = [
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Internet"
],
keywords = 'public ip checker, ip',
author = 'Artur Barseghyan',
author_email = 'artur.barseghyan@gmail.com',
url = 'https://github.com/barseghyanartur/pif',
package_dir = {'':'src'},
packages = find_packages(where='./src'),
include_package_data = True,
package_data = {
keywords='public ip checker, ip',
author='Artur Barseghyan',
author_email='artur.barseghyan@gmail.com',
url='https://github.com/barseghyanartur/pif',
package_dir={'': 'src'},
packages=find_packages(where='./src'),
include_package_data=True,
package_data={
'pif': execs,
},
scripts = ['src/pif/bin/get-public-ip',],
license = 'GPL 2.0/LGPL 2.1',
install_requires = ['requests>=1.2.3', 'argparse',]
scripts=['src/pif/bin/get-public-ip',],
license='GPL 2.0/LGPL 2.1',
install_requires=['requests>=1.2.3', 'argparse']
)
4 changes: 2 additions & 2 deletions src/pif/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from pif.utils import get_public_ip

__title__ = 'pif'
__version__ = '0.7.3'
__build__ = 0x00000a
__version__ = '0.7.4'
__build__ = 0x00000b
__author__ = 'Artur Barseghyan'
__copyright__ = 'Copyright (c) 2013-2016 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
Expand Down

0 comments on commit d10ec4b

Please sign in to comment.