added distutils setup script

This commit is contained in:
Frank DeMarco 2012-08-25 00:05:25 -04:00
parent 72ed607bd0
commit addcfc6922
3 changed files with 17 additions and 0 deletions

2
.gitignore vendored
View File

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

1
MANIFEST.in Normal file
View File

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

14
setup.py Normal file
View File

@ -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"])