Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.'),
Expand All @@ -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'],
)