-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (28 loc) · 1.23 KB
/
setup.py
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
33
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
from distutils.core import setup
from pymlgame import __version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='PyMLGame',
version=__version__,
author='Ricardo Band',
author_email='[email protected]',
maintainer='Ricardo Band',
maintainer_email='[email protected]',
url='http://github.com/PyMLGame/pymlgame',
description='PyMLGame is an abstraction layer to easily build games for Mate Light inspired by PyGame.',
long_description=read('README.md'),
download_url='https://github.com/PyMLGame/pymlgame/archive/master.zip',
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Games/Entertainment',
'Topic :: Software Development :: Libraries :: Python Modules'],
platforms='any',
packages=['pymlgame'])