-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsetup.py
executable file
·76 lines (67 loc) · 2.36 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#! /usr/bin/env python
import os.path
import sys
from setuptools import setup
version = "2.0.1"
if (not os.path.exists(os.path.join("pyxmpp2","version.py"))
or "make_version" in sys.argv):
with open("pyxmpp2/version.py", "w") as version_py:
version_py.write("# pylint: disable=C0111,C0103\n")
version_py.write("version = {0!r}\n".format(version))
if "make_version" in sys.argv:
sys.exit(0)
else:
exec(open(os.path.join("pyxmpp2", "version.py")).read())
if version.endswith("-git"):
download_url = None
else:
download_url = 'http://github.com/downloads/Jajcus/pyxmpp2/pyxmpp2-{0}.tar.gz'.format(version),
extra = {}
if sys.version_info[0] >= 3:
extra['use_2to3'] = True
extra['use_2to3_fixers'] = ['custom_2to3']
install_requires = []
else:
install_requires = ['dnspython >=1.6.0']
setup(
name = 'pyxmpp2',
version = version,
description = 'XMPP/Jabber implementation for Python',
author = 'Jacek Konieczny',
author_email = '[email protected]',
download_url = download_url,
url = 'https://github.com/Jajcus/pyxmpp2',
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Communications",
"Topic :: Communications :: Chat",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
],
license = 'LGPL',
install_requires = install_requires,
packages = [
'pyxmpp2',
'pyxmpp2.mainloop',
'pyxmpp2.sasl',
'pyxmpp2.ext',
'pyxmpp2.server',
'pyxmpp2.test',
],
package_data = {
'pyxmpp2.test': ['data/*.pem', 'data/*.txt', 'data/*.xml'],
},
test_suite = "pyxmpp2.test.discover",
**extra
)