Files
Pinry/setup.py

51 lines
1.5 KiB
Python
Raw Normal View History

2013-03-06 10:51:11 -08:00
import os
from setuptools import setup, find_packages
2013-03-06 15:24:51 -08:00
2013-03-06 10:51:11 -08:00
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
2013-03-06 15:24:51 -08:00
dependency_links = [
# Not released version, PIL dependency replaced by pillow
'http://github.com/kklimonda/django-images/tarball/master#egg=django-images-2013.1.99',
2013-03-06 15:24:51 -08:00
# 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 = [
'Django>=1.5',
'Pillow',
'South',
'django-tastypie==0.9.12',
'django-braces',
'django_compressor',
'requests',
'django-images',
'django-taggit'
2013-03-06 15:24:51 -08:00
]
2013-03-06 10:51:11 -08:00
setup(
2013-03-06 15:24:51 -08:00
name="pinry",
version="1.0.0",
2013-03-06 15:24:51 -08:00
author="Pinry contributors",
author_email="devs@getpinry.com",
description=("A tiling image board system for people who want to save, "
"tag, and share images, videos and webpages."),
license="AGPL-3+",
keywords="web pictures kittens",
url="http://packages.python.org/pinry",
2013-03-06 10:51:11 -08:00
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
long_description=read('README.md'),
2013-03-06 15:24:51 -08:00
dependency_links=dependency_links,
tests_require=['mock', 'factory-boy>=1.3,<2.0'],
2013-03-06 15:24:51 -08:00
install_requires=install_requires,
2013-03-06 10:51:11 -08:00
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Django",
"Environment :: Web Environment",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
],
)