forked from twonds/punjab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (32 loc) · 1.17 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
from distutils.core import setup
# Make sure 'twisted' doesn't appear in top_level.txt
try:
from setuptools.command import egg_info
egg_info.write_toplevel_names
except (ImportError, AttributeError):
pass
else:
def _top_level_package(name):
return name.split('.', 1)[0]
def _hacked_write_toplevel_names(cmd, basename, filename):
pkgs = dict.fromkeys(
[_top_level_package(k)
for k in cmd.distribution.iter_distribution_names()
if _top_level_package(k) != "twisted"
]
)
cmd.write_file("top-level names", filename, '\n'.join(pkgs) + '\n')
egg_info.write_toplevel_names = _hacked_write_toplevel_names
with open('README.txt') as file:
long_description = file.read()
setup(name='punjab',
version='0.15',
description='Punjab, a twisted BOSH server.',
long_description = long_description,
author='Christopher Zorn',
author_email='[email protected]',
zip_safe=False,
url='https://github.com/twonds/punjab',
packages=['punjab','punjab.xmpp', 'twisted.plugins'],
package_data={'twisted.plugins': ['twisted/plugins/punjab.py']}
)