added distutils setup script

frameset
Frank DeMarco 11 years ago
parent 72ed607bd0
commit addcfc6922

2
.gitignore vendored

@ -1 +1,3 @@
*.pyc
build/
MANIFEST

@ -0,0 +1 @@
include sample.py

@ -0,0 +1,14 @@
from distutils.core import setup
setup(name="Pygame Framework",
version="0.1",
description="Classes to facilitate the creation of pygame projects",
author="Frank DeMarco",
author_email="frank.s.demarco@gmail.com",
url="http://usethematrixze.us",
packages=["pgfw"],
classifiers=["Development Status :: 2 - Pre-Alpha",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: Public Domain",
"Programming Language :: Python :: 2.7"])
Loading…
Cancel
Save