-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 779 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 779 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
#!/usr/bin/env python
from distutils.core import setup
import py2exe
setup(
console=['peas/as_load_test.py'],
options={
'py2exe': {
'packages': ['peas', 'peas.eas_client',
'peas.pyActiveSync', 'peas.pyActiveSync.client', 'peas.pyActiveSync.objects', 'peas.pyActiveSync.utils']
}
}
)
"""
setup(name='PEAS',
console=['peas/__main__.py'])
setup(name='PEAS',
version='1.0',
description='ActiveSync Library',
author='Adam Rutherford',
author_email='adam.rutherford@mwrinfosecurity.com',
packages=['peas', 'peas.eas_client',
'peas.pyActiveSync', 'peas.pyActiveSync.client', 'peas.pyActiveSync.objects', 'peas.pyActiveSync.utils'],
scripts=['scripts/peas'],
)
"""