Educational 2D-Game Engine based on pygame
https://www.miniworldmaker.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.3 KiB
33 lines
1.3 KiB
from codecs import open |
|
from os import path |
|
|
|
from setuptools import setup, find_packages |
|
|
|
here = path.abspath(path.dirname(__file__)) |
|
|
|
# Get the long description from the README file |
|
with open(path.join(here, 'README.md'), encoding='utf-8') \ |
|
as f: long_description = f.read() |
|
|
|
setup(name='miniworldmaker', |
|
version='2.10.0.2', |
|
description='Create 2D Miniworlds and Games', |
|
long_description=long_description, |
|
long_description_content_type='text/markdown', |
|
keywords=['games', 'education', 'mini-worlds', 'pygame'], # arbitrary keywords |
|
author='Andreas Siebel', |
|
author_email='andreas.siebel@it-teaching.de', |
|
url='https://github.com/asbl/miniworldmaker', |
|
download_url='https://github.com/asbl/miniworldmaker', |
|
license="OSI Approved :: MIT License", |
|
classifiers=["License :: OSI Approved :: MIT License", |
|
"Programming Language :: Python", |
|
"Development Status :: 4 - Beta", |
|
"Intended Audience :: Education", |
|
"Topic :: Education", |
|
], |
|
packages=find_packages(exclude=['contrib', 'docs', 'tests', 'examples']), # Required |
|
package_dir={'miniworldmaker': 'miniworldmaker'}, |
|
install_requires=['pygame>=2.0.1', 'pymunk>=6.2.0,<=6.2.0', 'easygui', 'numpy'], |
|
include_package_data=True, |
|
)
|
|
|