Skip to content

Commit

Permalink
Update PyPI version
Browse files Browse the repository at this point in the history
  • Loading branch information
neelsomani committed Jun 28, 2020
1 parent b2276b4 commit e8114be
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
from distutils.core import setup
from setuptools import setup
from os import path

this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='parallel-python-twitter',
packages=['parallel_twitter'],
version='0.1.0',
version='0.2.0',
license='MIT',
description='Python Twitter client to distribute requests across API keys',
long_description=long_description,
long_description_content_type='text/markdown',
author='Neel Somani',
author_email='[email protected]',
url='https://github.com/neelsomani/parallel-python-twitter',
Expand Down

0 comments on commit e8114be

Please sign in to comment.