Skip to content

Commit

Permalink
Added setup.py to aid in local testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
bigjason committed May 20, 2011
1 parent 957b016 commit ff90179
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -1,3 +1,6 @@
*.pyc
.project
.pydevproject
datatree.egg-info/
build/

2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,2 @@
include README.md

4 changes: 2 additions & 2 deletions README.md
@@ -1,11 +1,11 @@
datatree
DataTree
========

_This project is a work in progress and not ready for use yet._

Summary
-------
datatree is a DSL for creating structured documents in python inspired by Rubys
DataTree is a DSL for creating structured documents in python inspired by Rubys
Builder, but supporting many structured output formats (planned).

Example
Expand Down
25 changes: 25 additions & 0 deletions setup.py
@@ -0,0 +1,25 @@
from os import path
from setuptools import setup, find_packages

from datatree import VERSION

with open(path.join(path.dirname(__file__), 'README.md')) as f:
readme = f.read()

setup(
name="datatree",
version=".".join(map(str, VERSION)),
license="Creative Commons Attribution 3.0 Unported License",
description="DataTree is a DSL for creating structured documents in python.",
long_description=readme,
url="https://github.com/bigjason/datatree",
author="Jason Webb",
author_email="bigjasonwebb@gmail.com",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2.7"
]
)

0 comments on commit ff90179

Please sign in to comment.