forked from sopel-irc/sopel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·63 lines (54 loc) · 2.12 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
#!/usr/bin/env python
# coding=utf-8
from __future__ import absolute_import, division, print_function, unicode_literals
import sys
try:
from setuptools import setup, __version__ as setuptools_version
except ImportError:
print(
'You do not have setuptools, and can not install Sopel. The easiest '
'way to fix this is to install pip by following the instructions at '
'https://pip.readthedocs.io/en/latest/installing/\n'
'Alternately, you can run Sopel without installing it by running '
'"python sopel.py"',
file=sys.stderr,
)
sys.exit(1)
else:
version_info = setuptools_version.split('.')
major = int(version_info[0])
minor = int(version_info[1])
if major < 30 or (major == 30 and minor < 3):
print(
'Your version of setuptools is outdated: version 30.3 or above '
'is required to install Sopel. You can do that with '
'"pip install -U setuptools"\n'
'Alternately, you can run Sopel without installing it by running '
'"python sopel.py"',
file=sys.stderr,
)
sys.exit(1)
# We check Python's version ourselves in case someone installed Sopel on an
# old version of pip (<9.0.0), which doesn't know about `python_requires`.
if sys.version_info < (2, 7) or (
sys.version_info.major >= 3 and sys.version_info < (3, 3)
):
# Maybe not the best way to do this, but this question is tiring.
raise ImportError('Sopel requires Python 2.7+ or 3.3+.')
# Py2 EOL: https://www.python.org/dev/peps/pep-0373/#maintenance-releases
if sys.version_info.major == 2:
print(
'Warning: Python 2.x has reached end of life and will receive '
'no further updates. Sopel 8.0 will drop support for it.',
file=sys.stderr,
)
def read_reqs(path):
with open(path, 'r') as fil:
return list(fil.readlines())
requires = read_reqs('requirements.txt')
if sys.version_info[0] < 3:
requires.append('backports.ssl_match_hostname')
dev_requires = requires + read_reqs('dev-requirements.txt')
setup(
install_requires=requires, extras_require={"dev": dev_requires},
)