You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 11 години
преди 11 години
преди 11 години
преди 11 години
преди 11 години
преди 11 години
преди 11 години
преди 11 години
преди 11 години
преди 11 години
преди 11 години
преди 11 години
123456789101112131415161718192021222324252627282930313233343536373839404142
  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. install_requires = [
  6. 'Django',
  7. 'Pillow',
  8. 'South',
  9. 'requests',
  10. 'django-taggit',
  11. 'django-images',
  12. 'django-braces',
  13. 'django_compressor',
  14. 'django-tastypie==0.9.14',
  15. ]
  16. setup(
  17. name="pinry",
  18. version="1.3.2",
  19. author="Pinry Contributors",
  20. author_email="devs@getpinry.com",
  21. description=("A tiling image board system for people who want to save, "
  22. "tag, and share images, videos and webpages."),
  23. license="Simplified BSD",
  24. keywords="django tiling board tag share images pictures videos webpages",
  25. url="http://getpinry.com/",
  26. packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
  27. long_description=read('README.rst'),
  28. tests_require=['mock', 'factory-boy>=1.3,<2.0'],
  29. install_requires=install_requires,
  30. classifiers=[
  31. "Development Status :: 5 - Production/Stable",
  32. "License :: OSI Approved :: BSD License",
  33. "Framework :: Django",
  34. "Environment :: Web Environment",
  35. ],
  36. )