forked from titusjan/astviewer
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
chick
committed
Apr 28, 2014
1 parent
bddaa78
commit a844785
Showing
1 changed file
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', ], | ||
} | ||
|
||
) |