-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 853 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setup(
name='Appcubator-codegen',
version='0.1.0',
author='Appcubator',
author_email='team@appcubator.com',
packages=['app_builder',
'app_builder.analyzer',
'app_builder.codes',
'app_builder.tests'
],
package_data={"app_builder": ['code_boilerplate/*.*', 'code_boilerplate/*/*.*',
'tests/master_state.json',
'codes/code_templates/*.*', 'codes/code_templates/*/*.*',
'analyzer/templates/*.*', 'analyzer/templates/*/*.*']},
url='https://github.com/appcubator/appcubator-codegen',
license='LICENSE.txt',
description='Tranforms app state to code',
long_description=open('README.md').read(),
install_requires=['shell'],
)