-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
46 lines (44 loc) · 1.13 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
from distutils.core import setup
import comet
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name="Comet",
description=comet.__description__,
author=comet.__author__,
author_email=comet.__contact__,
version=comet.__version__,
url=comet.__url__,
packages=[
'comet',
'comet.cmdline',
'comet.cmdline.test',
'comet.handler',
'comet.handler.test',
'comet.log',
'comet.log.test',
'comet.plugins',
'comet.plugins.test',
'comet.protocol',
'comet.protocol.test',
'comet.service',
'comet.service.test',
'comet.utility',
'comet.utility.test',
'comet.validator',
'comet.validator.test',
'twisted'
],
scripts=['scripts/comet-sendvo'],
package_data={
'comet': ['schema/*.xsd'],
'comet.handler.test': [
'test_spawn.sh',
'test_spawn_failure.sh',
'test_spawn_output.sh',
'test_spawn_stdout.sh'
],
'twisted': ['plugins/comet_plugin.py']
},
install_requires=required
)