-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (41 loc) · 1.17 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "filepass"
version = "1.0.2"
authors = [
{ name="Orlund Norstrom", email="onorstrom@kamloops.ca" },
{ name="Marco Lussetti", email="mlussetti@kamloops.ca" },
{ name="Parul Parul", email="pparul@kamloops.ca" },
]
dependencies = [
"appdirs==1.4.4",
"bcrypt==4.1.2",
"cffi==1.16.0",
"cryptography==42.0.2",
"fs==2.4.16",
"fs.smbfs==1.0.7",
"fs.sshfs==1.0.2",
"graypy==2.1.0",
"paramiko==3.4.0",
"property-cached==1.6.4",
"pyasn1==0.5.1",
"pycparser==2.21",
"PyNaCl==1.5.0",
"pysmb==1.2.9.1",
"six==1.16.0",
"tqdm==4.66.2",
]
description = "Wrapper around fs libraries to synchronized files between different system types including SMB, SFTP, FSTP."
readme = "README.md"
license = { text= "Apache-2.0" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
]
[project.urls]
"Homepage" = "https://github.com/cityofkamloops/filepass"
"Bug Tracker" = "https://github.com/cityofkamloops/filepass/issues"