blob: f5ce4117f7160a48c455b9bd56606d6470e9de79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[build-system]
requires = ["setuptools","wheel"]
[project]
name = "seafobj"
version = "12.0.9"
description = "Python library for accessing seafile data model"
authors = [
{name = "Seafile Ltd.", email = "info@seafile.com"}
]
dependencies = [
"boto3",
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "Apache2"}
[project.urls]
Homepage = "https://seafile.com"
Repository = "https://github.com/haiwen/seafobj"
[tool.setuptools.packages.find]
exclude=["test.*", "test"]
namespaces = false
|