brutalmaze/setup.py

33 lines
1.2 KiB
Python
Raw Normal View History

2017-10-12 15:29:55 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
setup(
name='brutalmaze',
2018-05-20 15:33:50 +02:00
version='0.7.0',
description='A minimalist TPS game with fast-paced action',
2017-10-12 15:29:55 +02:00
long_description=long_description,
url='https://github.com/McSinyx/brutalmaze',
author='Nguyễn Gia Phong',
author_email='vn.mcsinyx@gmail.com',
license='GPLv3+',
classifiers=[
2018-02-12 06:17:39 +01:00
'Development Status :: 4 - Beta',
2017-10-12 15:29:55 +02:00
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
2017-10-12 15:29:55 +02:00
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Games/Entertainment :: Arcade'],
2018-05-20 15:33:50 +02:00
keywords='pygame third-person-shooter arcade-game maze ai-challenges',
2017-10-12 15:29:55 +02:00
packages=['brutalmaze'],
2018-02-02 17:33:22 +01:00
install_requires=['appdirs', 'pygame>=1.9'],
package_data={'brutalmaze': ['icon.png', 'soundfx/*.ogg', 'settings.ini']},
2018-04-04 18:35:43 +02:00
entry_points={'console_scripts': ['brutalmaze = brutalmaze.game:main']})