-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
101 lines (92 loc) · 2.15 KB
/
pyproject.toml
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
[build-system]
build-backend = 'hatchling.build'
requires = ['hatchling']
[project]
authors = [
{ name = 'byteskeptical' }
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython'
]
dependencies = [
'paramiko>=1.17.0'
]
description = 'Pretty secure file transfer made easy.'
license = {file = 'LICENSE'}
keywords = [
'file-transfer',
'file-transfer-protocol',
'ftp',
'paramiko',
'pysftp',
'scp',
'sftp',
'sftp-client',
'sftp-download',
'sftp-server',
'sftp-upload',
'ssh'
]
name = 'sftpretty'
readme = 'README.rst'
requires-python = '>=3.6'
version = '1.1.7'
[project.scripts]
sftpretty = 'sftpretty:Connection'
[project.optional-dependencies]
dev = [
'pylint'
]
doc = [
'babel',
'docutils',
'jinja2',
'pygments',
'Sphinx',
'sphinx_rtd_theme'
]
lint = [
'pep8'
]
test = [
'pytest',
'pytest-sftpserver'
]
[project.urls]
Documentation = 'https://docs.sftpretty.com'
Repository = 'https://github.com/byteskeptical/sftpretty'
Tracker = 'https://github.com/byteskeptical/sftpretty/issues'
[tool.hatch.build.targets.sdist]
include = [
'/.gitignore',
'/LICENSE',
'/pyproject.toml',
'/README.rst',
'/sftpretty',
'/tests'
]
[tool.hatch.build.targets.wheel]
packages = ['sftpretty']
[tool.pytest.ini_options]
addopts = '-ra -v --strict-markers'
[tool.setuptools]
platforms = ['any']
py-modules = ['setuptools_sftpretty']
zip-safe = true
[tool.setuptools.packages.find]
where = ['.']