Skip to content

Commit

Permalink
Tag version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kata198 committed Jan 10, 2017
1 parent 6d73af9 commit 7fc47fd
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 33 deletions.
6 changes: 3 additions & 3 deletions pumpkinlb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# PumpkinLB Copyright (c) 2014-2015 Tim Savannah under GPLv3.
# PumpkinLB Copyright (c) 2014-2015, 2017 Tim Savannah under GPLv3.
# You should have received a copy of the license as LICENSE
#
# See: https://github.com/kata198/PumpkinLB

__version__ = '1.4'
__version_tuple__ = (1, 4, 0)
__version__ = '2.0.0'
__version_tuple__ = (2, 0, 0)
66 changes: 36 additions & 30 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,33 +1,39 @@
#!/usr/bin/env python

from setuptools import setup

try:
with open('README.rst', 'rt') as f:
long_description = f.read()
except:
long_description = "See README"
if __name__ == '__main__':

try:
with open('README.rst', 'rt') as f:
long_description = f.read()
except:
long_description = "See README"

setup(name='PumpkinLB',
version='1.4.0',
scripts=['PumpkinLB.py'],
packages=['pumpkinlb'],
author='Tim Savannah',
author_email='[email protected]',
maintainer='Tim Savannah',
maintainer_email='[email protected]',
provides=['PumpkinLB'],
description='A simple, fast, pure-python load balancer',
url='https://github.com/kata198/PumpkinLB',
long_description=long_description,
license='GPLv3',
keywords=['load balancer', 'load balance', 'python', 'balance', 'lb', 'http', 'socket', 'port', 'forward', 'tcp', 'fast', 'server', 'network'],
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Networking',
]
)
setup(name='PumpkinLB',
version='2.0.0',
scripts=['PumpkinLB.py'],
packages=['pumpkinlb'],
author='Tim Savannah',
author_email='[email protected]',
maintainer='Tim Savannah',
maintainer_email='[email protected]',
provides=['PumpkinLB'],
description='A simple, fast, pure-python load balancer',
url='https://github.com/kata198/PumpkinLB',
long_description=long_description,
license='GPLv3',
keywords=['load balancer', 'load balance', 'python', 'balance', 'lb', 'http', 'socket', 'port', 'forward', 'tcp', 'fast', 'server', 'network'],
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Networking',
]
)

0 comments on commit 7fc47fd

Please sign in to comment.