-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
51 lines (47 loc) · 1.56 KB
/
setup.py
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from distutils.core import setup
author = 'Lax & Ken'
email = ''
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
setup(name = 'peachagent',
version = '1.0',
description = 'The realtime monitor, agent module',
author = author,
author_email = email,
url = 'https://github.com/xiaonei/peach',
packages = ['peach.agent', 'peach.agent.modules'],
package_dir = {
'peach.agent': 'agent',
'peach.agent.modules': 'agent/modules',
},
package_data = {
'peach.agent': ['agent/*.py'],
'peach.agent.modules': ['agent/modules/*.py']
},
classifiers = classifiers
)
setup(name = 'peachserver',
version = '1.0',
description = 'The realtime monitor, server module',
author = author,
author_email = email,
url = 'https://github.com/xiaonei/peach',
packages = ['peach.server', 'peach.server.pipes'],
package_dir = {
'peach.server': 'server',
'peach.server.pipes': 'server/pipes',
},
package_data = {
'peach.server': ['server/*.py', 'server/static/*', 'server/templates/*'],
'peach.server.pipes': ['server/pipes/*.py']
},
classifiers = classifiers
)