forked from matthew-brett/Kytten
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.21 KB
/
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
29
30
31
32
# -*- coding: utf-8 -*-
"""setup -- setuptools setup file for kytten.
GUI Framework for Pyglet
"""
from setuptools import setup
setup(name="felyne",
version="7.0.4",
author="Conrad 'Lynx' Wong (originator), Raymond Chandler III (fork), DeflatedPickle (fork)",
description="A Python 3 fork of Kytten, a widget toolkit for Pyglet.",
url="https://github.com/DeflatedPickle/felyne",
license="BSD",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
("Topic :: Software Development :: Libraries :: Python Modules"),
("Topic :: Games/Entertainment"),
],
packages=["kytten", "kytten/themes"],
install_requires=['pyglet>=1.1.4'],
zip_safe=False,
include_package_data=True)