about summary refs log tree commit diff homepage
path: root/setup.py
blob: 67f43eb3d07e0f4e97266c20fc4aad6b0975b23e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup

with open('README.rst') as f:
    long_description = f.read()

setup(
    name='brutalmaze',
    version='0.2.0',
    description='A hash and slash game with fast-paced action and a minimalist art style',
    long_description=long_description,
    url='https://github.com/McSinyx/brutalmaze',
    author='Nguyễn Gia Phong',
    author_email='vn.mcsinyx@gmail.com',
    license='GPLv3+',
    classifiers=[
        'Development Status :: 3 - Alpha',
        'Environment :: MacOS X',
        'Environment :: Win32 (MS Windows)',
        'Environment :: X11 Applications',
        'Intended Audience :: End Users/Desktop',
        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
        'Natural Language :: English',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Topic :: Games/Entertainment :: Arcade'],
    keywords='pygame action-game arcade-game maze',
    packages=['brutalmaze'],
    install_requires=['pygame>=1.9'],
    package_data={'brutalmaze': ['icon.png']},
    entry_points={'gui_scripts': ['brutalmaze = brutalmaze:main']})