forked from titusjan/astviewer
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (27 loc) · 717 Bytes
/
setup.py
File metadata and controls
33 lines (27 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup
setup(
name='ast_tool_box',
version='1.0.0',
author="Chick Markley",
author_email="chickmarkley@gmail.com",
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',
'ctree'
],
entry_points={
'console_scripts': ['ast_tool_box = ast_tool_box.main:main', ],
}
)