setup.py 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #!/usr/bin/env python
  2. # Installation file
  3. # Copyright (C) 2016-2017 Jorge Maldonado Ventura
  4. # This file is part of Bullet Dodger
  5. # Bullet dodger is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. # Bullet dodger is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. # You should have received a copy of the GNU General Public License
  14. # along with Bullet dodger. If not, see <http://www.gnu.org/licenses/>.
  15. import os
  16. try:
  17. from setuptools import setup
  18. except ImportError:
  19. from distutils.core import setup
  20. setup(
  21. name='bullet_dodger',
  22. version=__import__('bullet_dodger').__version__,
  23. author='Jorge Maldonado Ventura',
  24. author_email='jorgesumle@freakspot.net',
  25. description=__import__('bullet_dodger').PROGRAM_DESCRIPTION,
  26. entry_points={
  27. 'console_scripts': [
  28. 'bullet_dodger=bullet_dodger.bullet_dodger:main_loop'
  29. ],
  30. },
  31. license='GNU General Public License v3 (GPLv3)',
  32. keywords='videogame bullet action arcade simple',
  33. url='https://notabug.org/jorgesumle/bullet_dodger',
  34. packages=['bullet_dodger'],
  35. install_requires=[
  36. 'pygame >= 1.9.2',
  37. ],
  38. classifiers=[
  39. 'Development Status :: 4 - Beta',
  40. 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
  41. 'Intended Audience :: End Users/Desktop',
  42. 'Natural Language :: English',
  43. 'Natural Language :: Spanish',
  44. 'Operating System :: OS Independent',
  45. 'Programming Language :: Python',
  46. 'Programming Language :: Python :: 2',
  47. 'Programming Language :: Python :: 2.7',
  48. 'Programming Language :: Python :: 3',
  49. 'Programming Language :: Python :: 3.3',
  50. 'Programming Language :: Python :: 3.4',
  51. 'Programming Language :: Python :: 3.5',
  52. 'Programming Language :: Python :: 3.6',
  53. 'Topic :: Games/Entertainment',
  54. 'Topic :: Games/Entertainment :: Arcade',
  55. 'Topic :: Software Development :: Libraries :: pygame'
  56. ],
  57. include_package_data=True,
  58. )