setup.py 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #!/usr/bin/env python
  2. # Installation file
  3. # Copyright (C) 2016-2018, 2023 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. with open('README.md') as f:
  21. long_description = f.read()
  22. setup(
  23. name='bullet_dodger',
  24. version=__import__('bullet_dodger').__version__,
  25. author='Jorge Maldonado Ventura',
  26. author_email='jorgesumle@freakspot.net',
  27. description=__import__('bullet_dodger').PROGRAM_DESCRIPTION,
  28. entry_points={
  29. 'console_scripts': [
  30. 'bullet_dodger=bullet_dodger.bullet_dodger:main_loop'
  31. ],
  32. },
  33. license='GNU General Public License v3 (GPLv3)',
  34. long_description=long_description,
  35. long_description_content_type='text/markdown',
  36. keywords='videogame bullet action arcade simple',
  37. url='https://freakspot.net/programas/bullet_dodger/',
  38. packages=['bullet_dodger'],
  39. install_requires=[
  40. 'pygame >= 1.9.2',
  41. ],
  42. classifiers=[
  43. 'Development Status :: 4 - Beta',
  44. 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
  45. 'Intended Audience :: End Users/Desktop',
  46. 'Natural Language :: English',
  47. 'Natural Language :: Esperanto',
  48. 'Natural Language :: German',
  49. 'Natural Language :: Portuguese',
  50. 'Natural Language :: Spanish',
  51. 'Operating System :: OS Independent',
  52. 'Programming Language :: Python',
  53. 'Programming Language :: Python :: 2',
  54. 'Programming Language :: Python :: 2.7',
  55. 'Programming Language :: Python :: 3',
  56. 'Programming Language :: Python :: 3.3',
  57. 'Programming Language :: Python :: 3.4',
  58. 'Programming Language :: Python :: 3.5',
  59. 'Programming Language :: Python :: 3.6',
  60. 'Programming Language :: Python :: 3.7',
  61. 'Programming Language :: Python :: 3.8',
  62. 'Programming Language :: Python :: 3.9',
  63. 'Programming Language :: Python :: 3.10',
  64. 'Programming Language :: Python :: 3.11',
  65. 'Topic :: Games/Entertainment',
  66. 'Topic :: Games/Entertainment :: Arcade',
  67. 'Topic :: Software Development :: Libraries :: pygame'
  68. ],
  69. include_package_data=True,
  70. )