-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
47 lines (42 loc) · 1.11 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
# Copyright (C) 2021 Leandro Lisboa Penz <lpenz@lpenz.org>
# This file is subject to the terms and conditions defined in
# file 'LICENSE', which is part of this source code package.
[metadata]
name = ftpsmartsync
version = attr: ftpsmartsync.__version__
description = Sync local path with FTP remote efficiently by
transmitting only what is necessary
license = GPLv2+
license_files = LICENSE
description_file =
README.md
author = "Leandro Lisboa Penz"
author_email = "lpenz@lpenz.org"
url = http://github.com/lpenz/ftpsmartsync
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Operating System :: OS Independent
Programming Language :: Python :: 3
[options]
package_dir =
= src
packages = find:
scripts =
src/bin/ftpsmartsync
python_requires = >=3.6
[options.packages.find]
where = src
[options.data_files]
share/man/man1 =
ftpsmartsync.1
share/doc/python3-ftpsmartsync =
README.md
LICENSE
AUTHORS
[options.extras_require]
test =
pytest
pytest-cov
pyftpdlib