Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 

43 rindas
1.1 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. 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. )