Update setup to most recent version and packages

This commit is contained in:
Isaac Bythewood
2013-09-25 23:21:10 +00:00
parent 82ad313120
commit 0a9a277065

View File

@@ -6,45 +6,38 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read() return open(os.path.join(os.path.dirname(__file__), fname)).read()
dependency_links = [
# Not released version, PIL dependency replaced by pillow
'http://github.com/kklimonda/django-images/tarball/master#egg=django-images-2013.1.99',
# Original project has been dead for years, this branch adds Django 1.4 support
'http://github.com/hcarvalhoalves/django-taggit/tarball/master#egg=django-taggit-0.9.3.99'
]
install_requires = [ install_requires = [
'Django>=1.5', 'Django',
'Pillow', 'Pillow',
'South', 'South',
'django-tastypie==0.9.12', 'requests',
'django-taggit',
'django-images',
'django-braces', 'django-braces',
'django_compressor', 'django_compressor',
'requests', 'django-tastypie==0.9.14',
'django-images',
'django-taggit'
] ]
setup( setup(
name="pinry", name="Pinry",
version="1.1.0", version="1.3.1",
author="Pinry contributors", author="Pinry Contributors",
author_email="devs@getpinry.com", author_email="devs@getpinry.com",
description=("A tiling image board system for people who want to save, " description=("A tiling image board system for people who want to save, "
"tag, and share images, videos and webpages."), "tag, and share images, videos and webpages."),
license="AGPL-3+", license="AGPL-3+",
keywords="web pictures kittens", keywords="django tiling board tag share images pictures videos webpages",
url="http://packages.python.org/pinry", url="http://getpinry.com/",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
long_description=read('README.md'), long_description=read('README.md'),
dependency_links=dependency_links, dependency_links=dependency_links,
tests_require=['mock', 'factory-boy>=1.3,<2.0'], tests_require=['mock', 'factory-boy>=1.3,<2.0'],
install_requires=install_requires, install_requires=install_requires,
classifiers=[ classifiers=[
"Development Status :: 4 - Beta", "Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Framework :: Django", "Framework :: Django",
"Environment :: Web Environment", "Environment :: Web Environment",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
], ],
) )