-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 856 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
23
24
25
26
27
28
from setuptools import setup
with open("README.md", "r") as f:
description = f.read()
setup(
name='pygameZoom',
version='0.0.4',
description='Zoom into pygame figures without quality loss',
long_description=description,
long_description_content_type="text/markdown",
py_modules=['pygameZoom'],
package_dir={"": "src"},
classifiers=[
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Topic :: Games/Entertainment :: Simulation",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
install_requires=[
"pygame"
],
url="https://github.com/Grzetan/pygameZoom",
author="Grzegorz Paleta",
author_email="[email protected]"
)