Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

51 rader
1.5 KiB

  1. import os
  2. from setuptools import setup, find_packages
  3. def read(fname):
  4. return open(os.path.join(os.path.dirname(__file__), fname)).read()
  5. dependency_links = [
  6. # Not released version, PIL dependency replaced by pillow
  7. 'http://github.com/kklimonda/django-images/tarball/master#egg=django-images-2013.1.99',
  8. # Original project has been dead for years, this branch adds Django 1.4 support
  9. 'http://github.com/hcarvalhoalves/django-taggit/tarball/master#egg=django-taggit-0.9.3.99'
  10. ]
  11. install_requires = [
  12. 'Django>=1.5',
  13. 'Pillow',
  14. 'South',
  15. 'django-tastypie==0.9.12',
  16. 'django-braces',
  17. 'django_compressor',
  18. 'requests',
  19. 'django-images',
  20. 'django-taggit'
  21. ]
  22. setup(
  23. name="pinry",
  24. version="1.1.0",
  25. author="Pinry contributors",
  26. author_email="devs@getpinry.com",
  27. description=("A tiling image board system for people who want to save, "
  28. "tag, and share images, videos and webpages."),
  29. license="AGPL-3+",
  30. keywords="web pictures kittens",
  31. url="http://packages.python.org/pinry",
  32. packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
  33. long_description=read('README.md'),
  34. dependency_links=dependency_links,
  35. tests_require=['mock', 'factory-boy>=1.3,<2.0'],
  36. install_requires=install_requires,
  37. classifiers=[
  38. "Development Status :: 4 - Beta",
  39. "Framework :: Django",
  40. "Environment :: Web Environment",
  41. "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
  42. ],
  43. )