Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
update setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Pompili committed Sep 9, 2016
1 parent c1ec4ee commit 67b51cc
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 13 deletions.
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[metadata]
name = django-instagram
version = 0.1.1
version = 0.2.0
author = Marco Pompili
author-email = marcs.pompili@gmail.com
author-email = django@emarcs.org
summary = A Django application based on the python-instagram API.
description-file = README.rst
home-page = https://github.com/marcopompili/django-instagram
32 changes: 21 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,37 +5,47 @@
"""

import os
from setuptools import setup
from setuptools import setup, find_packages

README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()

os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))

setup(
name=str('django-instagram'),
packages=['django_instagram', 'django_instagram.templatetags'],
version=str('0.1.1'),
author=str('Marco Pompili'),
author_email=str('marcs.pompili@gmail.org'),
url=str('https://github.com/marcopompili/django-instagram'),
version=str('0.2.0a1'),
description=str('Instagram client for Django.'),
long_description=README,
include_package_data=True,
author=str('Marco Pompili'),
author_email=str('django@emarcs.org'),
license=str('BSD-3 License'),
url=str('https://github.com/marcopompili/django-instagram'),
packages=find_packages(),
plarforms='any',
include_package_data=True,
install_requires=[
'django>=1.6',
'python-instagram'
'lxml',
'requests',
'sorl-thumbnail',
'Pillow',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Framework :: Django',
'Framework :: Django :: 1.6',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
],
)

0 comments on commit 67b51cc

Please sign in to comment.