forked from chick/ast_tool_box
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (28 loc) · 743 Bytes
/
setup.py
File metadata and controls
34 lines (28 loc) · 743 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
34
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',
],
install_requires=[
'PySide (>=1.1.2)',
'nose',
'codegen',
'ctree',
'sphinx'
],
entry_points={
'console_scripts': ['ast_tool_box = ast_tool_box.main:main', ],
}
)