forked from dlite-tools/aws-s3-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (53 loc) · 1.45 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
[tool.poetry]
name = "aws-s3-tools"
version = "0.0.4"
description = "AWS S3 tools package"
authors = ["Daniel Ferrari"]
maintainers = [
"Carlos Alves",
"Daniel Ferrari",
"Tomás Osório"
]
license = "MIT"
readme = "README.md"
packages = [
{ include = "s3_tools" }
]
homepage = "https://github.com/FerrariDG/aws-s3-tools"
repository = "https://github.com/FerrariDG/aws-s3-tools"
documentation = "https://aws-s3-tools.readthedocs.io/en/latest/index.html"
keywords = ["aws", "s3", "tools", "package"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: Freely Distributable",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = "^3.7"
boto3 = "^1.16.51"
ujson = "^4.0.1"
rich = {version = "^10.1.0", optional = true }
[tool.poetry.extras]
progress = ["rich"]
[tool.poetry.dev-dependencies]
flake8 = "^3.8.4"
moto = "^1.3.16"
mypy = "^0.800"
pydocstyle = "^5.1.1"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
sphinx = "^3.5.1"
sphinx-rtd-theme = "^0.5.1"
toml = "^0.10.2"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.aws-s3-tools]
copyright = "2021, Daniel Ferrari"