-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 1.15 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name="swine",
version="2.7.2",
description="A Python game engine",
author="DeflatedPickle",
url="https://github.com/SwineProject/swine",
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6"
],
keywords=["swine", "game", "engine", "game engine"],
packages=["swine",
"swine/component",
"swine/component/physics", "swine/component/physics/collider",
"swine/component/quicktime",
"swine/graphics",
"swine/gui",
"swine/input", "swine/input/handler",
"swine/object",
"swine/terminal", "swine/terminal/commands",
"swine/terminal/commands/standard",
"swine/terminal/window",
"swine/window"],
install_requires=["pyglet", "pymunk", "felyne"])