Skip to content
This repository has been archived by the owner on Sep 1, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Add setup.py and MANIFEST.
  • Loading branch information
MostAwesomeDude committed Dec 27, 2010
1 parent 5fb603f commit da0d6a2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
5 changes: 5 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,5 @@
include README.rst
include todo.txt
include docs/*.rst
include docs/conf.py
include docs/Makefile
11 changes: 11 additions & 0 deletions setup.py
@@ -0,0 +1,11 @@
#!/usr/bin/env python

from setuptools import find_packages, setup

setup(
name="construct",
version="2.04",
packages=find_packages(),
license="Public Domain",
long_description=open("README.rst").read(),
)

0 comments on commit da0d6a2

Please sign in to comment.