diff --git a/setup.py b/setup.py index 841b5de..ffffa5e 100755 --- a/setup.py +++ b/setup.py @@ -21,8 +21,7 @@ def calculate_version(): with open(version_py, 'r') as fh: version_git = (open(version_py).read() .strip().split('=')[-1].replace('"', '')) - version_msg = ('# Do not edit this file, pipeline versioning is ' - 'governed by git tags') + version_msg = ('# OK') with open(version_py, 'w') as fh: fh.write(version_msg + os.linesep + "__version__=" + version_git) return version_git @@ -50,12 +49,12 @@ def get_long_description(): setup( - name='TwitterFollowBot', + name='TwitterBot', version=version_git, - author='Randal S. Olson', - author_email='rso@randalolson.com', + author='Unkown', + author_email='blablabla@gmail.com', packages=find_packages(), - url='https://github.com/rhiever/TwitterFollowBot', + url='https://github.com/JumperHacktivist/TwitterFollowBot', license='GNU/GPLv3', description=('A Python bot that automates several actions on Twitter, ' 'such as following users and favoriting tweets.'), @@ -71,7 +70,7 @@ def get_long_description(): "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", - "Topic :: Internet" + "Topic :: Boobs" ], keywords=['Twitter', 'followers', 'automation', 'bot'], )