forked from PiecePaperCode/pyogame2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (22 loc) · 751 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setup(
name = 'pyogame2',
packages = ['pyogame2'],
version = '7.2.0.10',
license='MIT',
description = 'lib for the popular browsergame ogame',
author = 'PapeprPieceCode',
author_email = '[email protected]',
url = 'https://github.com/PiecePaperCode/pyogame2',
download_url = 'https://github.com/PiecePaperCode/pyogame2.git',
keywords = ['OGame', 'lib', 'for bots', 'bot'],
install_requires=[],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)