Skip to content

Commit

Permalink
Switched installation to use setuptools, incremented version
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrtwo committed Apr 8, 2014
1 parent d6318ea commit 8de5e4f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -37,3 +37,4 @@ nosetests.xml

static/figures
.DS_Store
MANIFEST
8 changes: 5 additions & 3 deletions setup.py
@@ -1,13 +1,15 @@
import os
from distutils.core import setup
from setuptools import setup

setup(name="gleam",
author="David Robinson",
author_email="dgrtwo@princeton.edu",
description="Interactive visualization in Python",
version="0.1",
version="0.1.1",
packages=["gleam"],
package_dir={"gleam": "src/gleam"},
package_data={"gleam": [os.path.join("templates", "*"),
os.path.join("static", "*"),
os.path.join("static", "*", "*")]}
os.path.join("static", "*", "*")]},
install_requires=['Flask', 'Jinja2', 'WTForms']
)

0 comments on commit 8de5e4f

Please sign in to comment.