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.

39 lines
1.4 KiB

  1. import os
  2. from setuptools import setup
  3. README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
  4. # allow setup.py to be run from any path
  5. os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
  6. setup(
  7. name='django-pydash-app',
  8. version='1.4.6',
  9. packages=['pydash'],
  10. include_package_data=True,
  11. license='MIT',
  12. description='A reusable django app for monitoring your linux server.',
  13. long_description=README,
  14. url='https://github.com/k3oni/pydash-django-app',
  15. author='Florian N.',
  16. author_email='michaelneagu@gmail.com',
  17. classifiers=[
  18. 'Development Status :: 5 - Production/Stable',
  19. 'Environment :: Web Environment',
  20. 'Framework :: Django',
  21. 'Intended Audience :: System Administrators',
  22. 'License :: OSI Approved :: MIT License',
  23. 'Operating System :: POSIX :: Linux',
  24. 'Programming Language :: Python',
  25. 'Programming Language :: Python :: 2.6',
  26. 'Programming Language :: Python :: 2.7',
  27. 'Programming Language :: Python :: 3',
  28. 'Programming Language :: Python :: 3.0',
  29. 'Programming Language :: Python :: 3.1',
  30. 'Programming Language :: Python :: 3.2',
  31. 'Programming Language :: Python :: 3.3',
  32. 'Programming Language :: Python :: 3.4',
  33. 'Topic :: Internet :: WWW/HTTP',
  34. 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
  35. ],
  36. )