-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
35 lines (30 loc) · 880 Bytes
/
setup.cfg
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
[metadata]
name = python_ftp_server
description = Command line FTP server tool designed for performance and ease of use.
long_description_content_type=text/markdown
long_description = file: README.md
version = 1.3.18
author = Vadym Stupakov
author_email = [email protected]
mainteiner = Vadym Stupakov
maintainer_email = [email protected]
url = https://github.com/Red-Eyed/python_ftp_server
license = MIT
keywords = ftp, cli, cmd, server
classifiers = Topic :: Communications :: File Sharing
Topic :: Internet :: File Transfer Protocol (FTP)
[options]
python_requires = >=3.6
install_requires =
requests>=2.26
pyftpdlib>=1.5.6
pyopenssl>=21.0.0
pysendfile>=2.0.1;sys_platform != "win32"
packages = python_ftp_server
[flake8]
max-line-length = 120
ignore =
W605,F541
enable =
W0614
optional-ascii-coding = True