Skip to content

Commit

Permalink
setup seems to work now
Browse files Browse the repository at this point in the history
  • Loading branch information
chick committed Apr 28, 2014
1 parent bddaa78 commit a844785
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,29 +1,33 @@
from distutils.core import setup
from setuptools import setup

setup(
name='ast_tool_box',
version='1.0.0',

author="Chick Markley",
author_email="[email protected]",
py_modules=['ast_tool_box'],

packages=[
'ast_tool_box',
'ast_tool_box.models',
'ast_tool_box.models.code_models',
'ast_tool_box.models.transform_models',
'ast_tool_box.views',
'ast_tool_box.views.code_views',
'ast_tool_box.views.transform_views',
'ast_tool_box.controllers',
'ast_tool_box.transformers',
],

requires=[
'PySide (>=1.1.2)',
'nose',
'codegen'
'codegen',
'ctree'
],

entry_points={
'console_scripts': ['ast_tool_box = ast_tool_box.ast_toolbox:main'],
'console_scripts': ['ast_tool_box = ast_tool_box.main:main', ],
}

)

0 comments on commit a844785

Please sign in to comment.