Files
Pinry/setup.py

44 lines
1.2 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
install_requires = [
'Django',
'Pillow',
'South',
'requests',
'django-taggit',
'django-images',
'django-braces',
'django_compressor',
'django-tastypie==0.9.14',
2013-03-06 15:24:51 -08:00
]
2013-03-06 10:51:11 -08:00
setup(
name="Pinry",
version="1.3.2",
author="Pinry Contributors",
2013-03-06 15:24:51 -08:00
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="Simplified BSD",
keywords="django tiling board tag share images pictures videos webpages",
url="http://getpinry.com/",
2013-03-06 10:51:11 -08:00
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
2013-09-25 23:50:30 +00:00
long_description=read('README.rst'),
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 :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
2013-03-06 10:51:11 -08:00
"Framework :: Django",
"Environment :: Web Environment",
],
)