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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
# Copyright (C) 2007 Giampaolo Rodola' <g.rodola@gmail.com>.
# Use of this source code is governed by MIT license that can be
# found in the LICENSE file.
"""pyftpdlib installer.
$ python setup.py install
"""
import ast
import os
import sys
import textwrap
WINDOWS = os.name == "nt"
# Test deps, installable via `pip install .[test]`.
TEST_DEPS = [
"psutil",
"pyopenssl",
"pytest",
"pytest-xdist",
"setuptools",
]
if sys.version_info[:2] >= (3, 12):
TEST_DEPS.append("pyasyncore")
TEST_DEPS.append("standard-asynchat")
if WINDOWS:
TEST_DEPS.append("pywin32")
# Development deps, installable via `pip install .[dev]`.
DEV_DEPS = [
"black",
"check-manifest",
"coverage",
"pylint",
"pytest-cov",
"pytest-xdist",
"rstcheck",
"ruff",
"toml-sort",
"twine",
]
if WINDOWS:
DEV_DEPS.extend(["pyreadline3", "pdbpp"])
def get_version():
INIT = os.path.abspath(
os.path.join(os.path.dirname(__file__), 'pyftpdlib', '__init__.py')
)
with open(INIT) as f:
for line in f:
if line.startswith('__ver__'):
ret = ast.literal_eval(line.strip().split(' = ')[1])
assert ret.count('.') == 2, ret
for num in ret.split('.'):
assert num.isdigit(), ret
return ret
raise ValueError("couldn't find version string")
def term_supports_colors():
try:
import curses # noqa: PLC0415
assert sys.stderr.isatty()
curses.setupterm()
assert curses.tigetnum("colors") > 0
except Exception:
return False
else:
return True
def hilite(s, ok=True, bold=False):
"""Return an highlighted version of 's'."""
if not term_supports_colors():
return s
else:
attr = []
if ok is None: # no color
pass
elif ok:
attr.append('32') # green
else:
attr.append('31') # red
if bold:
attr.append('1')
return f"\x1b[{';'.join(attr)}m{s}\x1b[0m"
with open('README.rst') as f:
long_description = f.read()
def main():
try:
import setuptools # noqa
from setuptools import setup # noqa
except ImportError:
setuptools = None
from distutils.core import setup # noqa
kwargs = dict(
name='pyftpdlib',
version=get_version(),
description='Very fast asynchronous FTP server library',
long_description=long_description,
long_description_content_type="text/x-rst",
license='MIT',
platforms='Platform Independent',
author="Giampaolo Rodola'",
author_email='g.rodola@gmail.com',
url='https://github.com/giampaolo/pyftpdlib/',
packages=['pyftpdlib', 'pyftpdlib.test'],
scripts=['scripts/ftpbench'],
package_data={
"pyftpdlib.test": [
"README",
'keycert.pem',
],
},
# fmt: off
keywords=['ftp', 'ftps', 'server', 'ftpd', 'daemon', 'python', 'ssl',
'sendfile', 'asynchronous', 'nonblocking', 'eventdriven',
'rfc959', 'rfc1123', 'rfc2228', 'rfc2428', 'rfc2640',
'rfc3659'],
# fmt: on
install_requires=[
"pyasyncore;python_version>='3.12'",
"standard-asynchat;python_version>='3.12'",
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: File Transfer Protocol (FTP)',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Filesystems',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)
if setuptools is not None:
extras_require = {
"dev": DEV_DEPS,
"test": TEST_DEPS,
"ssl": "PyOpenSSL",
}
kwargs.update(
python_requires=(
">2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
),
extras_require=extras_require,
zip_safe=False,
)
setup(**kwargs)
try:
from OpenSSL import SSL # NOQA
except ImportError:
msg = textwrap.dedent("""
'pyopenssl' third-party module is not installed. This means
FTPS support will be disabled. You can install it with:
'pip install pyopenssl'.""")
print(hilite(msg, ok=False), file=sys.stderr)
if sys.version_info[0] < 3: # noqa: UP036
sys.exit(
'Python 2 is no longer supported. Latest version is 1.5.10; use:\n'
'python3 -m pip install pyftpdlib==1.5.10'
)
if __name__ == '__main__':
main()
|