Skip to content

Commit

Permalink
Updating requirements in setup.py install_requires.
Browse files Browse the repository at this point in the history
  • Loading branch information
illume committed Jan 5, 2019
1 parent 82206c3 commit 4f72f73
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,15 @@ def load_pycparser(finder, module):
packages=find_packages(),
# package_data={'stuntcat': []},
url='https://github.com/pygame/stuntcat',
install_requires=['pygame'],
version='0.0.12',
install_requires=[
"pygame",
"pyscroll",
"pytmx",
"thorpy",
"pymunk>=5.4.1; sys_platform != 'win32'",
"pymunk==5.4.0; sys_platform == 'win32'",
],
version='0.0.13',
entry_points={
'console_scripts': [
'stuntcat=stuntcat.cli:main',
Expand Down

0 comments on commit 4f72f73

Please sign in to comment.