Skip to content

Commit

Permalink
✌️ align package version to what on pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
b3nab committed Oct 7, 2017
1 parent a58a303 commit 48be691
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 5 deletions.
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python
# 3. If at all possible, it is good practice to do this. If you cannot, you
# will need to generate wheels for each Python version that you support.
universal=1
33 changes: 28 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,37 @@
here = os.path.abspath(os.path.dirname(__file__))

setup(
name='instapycli',
version='0.0.1.dev1',
name='instapy-cli',
version='0.0.1-dev0',
description='Python library and cli used to upload photo on Instagram. W/o a phone!',
long_description='',
long_description=open('README.md').read(),
classifiers=[
'',
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',

# Indicate who your project is intended for
'Intended Audience :: Developers',
# 'Topic :: Software Development :: Build Tools',

# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',

# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2',
'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',
'Programming Language :: Python :: 3.6',
],
keywords='instagram private upload api',
keywords='instagram private upload api instapy instapy-cli instapycli',
author='Benedetto Abbenanti',
author_email='[email protected]',
url='https://github.com/b3nab/instapy-cli',
Expand Down

0 comments on commit 48be691

Please sign in to comment.