setup.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #-*- coding: utf-8 -*-
  2. import os
  3. from setuptools import setup
  4. from misago import __version__ as version
  5. README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
  6. with open("requirements.txt", "r") as f:
  7. REQUIREMENTS = [x.strip() for x in f.readlines()]
  8. # allow setup.py to be run from any path
  9. os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
  10. setup(
  11. name='misago',
  12. version=version,
  13. packages=['misago'],
  14. include_package_data=True,
  15. license='GNU General Public License v2 (GPLv2)',
  16. description='Misago is be complete, featured and modern forum solution.',
  17. long_description=README,
  18. url='http://www.misago-project.org/',
  19. author=u'Rafał Pitoń',
  20. author_email='kontakt@rpiton.com',
  21. install_requires=REQUIREMENTS,
  22. classifiers=[
  23. 'Development Status :: 2 - Pre-Alpha',
  24. 'Environment :: Web Environment',
  25. 'Framework :: Django',
  26. 'Intended Audience :: Developers',
  27. 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
  28. 'Operating System :: OS Independent',
  29. 'Programming Language :: Python',
  30. 'Programming Language :: Python :: 2.7',
  31. 'Topic :: Internet :: WWW/HTTP',
  32. 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
  33. "Topic :: Internet :: WWW/HTTP :: WSGI",
  34. "Topic :: Software Development :: Libraries :: Application Frameworks",
  35. "Topic :: Software Development :: Libraries :: Python Modules",
  36. ],
  37. )