-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (23 loc) · 779 Bytes
/
setup.py
File metadata and controls
executable file
·24 lines (23 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import find_packages, setup
setup(
name='pyghelpers',
version='1.1',
author='Irv Kalb',
author_email='Irv@furrypants.com',
description='Classes and functions for use with Pygame',
long_description='A collection of classes and functions for building programs using Pygame',
packages=find_packages(),
include_package_data=True,
license="BSD",
url='https://github.com/IrvKalb/pyghelpers',
install_requires=[
'pygame-ce>=2.0',
'pygwidgets>=1.0',
],
keywords="Timer classes, Scene and SceneMgr classes, Dialogs",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
)