forked from QuirkyCort/pgzhelper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 1.02 KB
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
from setuptools import setup, find_packages
setup(
name='pgzhelper_rw',
version='1.0.10',
description="Pygame Zero Helper enhance Pygame Zero with additional capabilities",
author='Cort + Roboticsware',
author_email='roboticsware.uz@gmail.com',
url='https://github.com/roboticsware/pgzhelper/',
download_url="https://github.com/roboticsware/pgzhelper/archive/refs/heads/master.zip",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=["pgzero>=1.2"],
packages=find_packages(exclude=[]),
package_data={},
zip_safe=False,
python_requires='>=3.7',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Education',
'Topic :: Games/Entertainment',
],
keywords=['roboticsware', 'neopia', 'pygame zero'],
)