33ba453793
ISSUES CLOSED: #2
73 lines
1.7 KiB
INI
73 lines
1.7 KiB
INI
[metadata]
|
|
name = clevercloud_storage_framework
|
|
version = 0.1.0
|
|
description = A unified framework for interacting with various AWS storage services
|
|
long_description = file: README.md
|
|
long_description_content_type = text/markdown
|
|
author = CleverThis
|
|
author_email = luis.mendes@cleverthis.com
|
|
license = Apache
|
|
license_files = LICENSE
|
|
url = https://git.cleverthis.com/cleverlibre/clevercloud-storage
|
|
classifiers =
|
|
Development Status :: 4 - Beta
|
|
Intended Audience :: Developers
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: Unix
|
|
Operating System :: POSIX
|
|
Programming Language :: Python :: 3
|
|
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 :: 3.13
|
|
keywords =
|
|
aws
|
|
aws s3
|
|
aws efs
|
|
aws glacier
|
|
api abstraction
|
|
|
|
[options]
|
|
package_dir =
|
|
= src
|
|
packages = find:
|
|
python_requires = >=3.8
|
|
install_requires =
|
|
boto3>=1.20.0
|
|
|
|
[options.packages.find]
|
|
where = src
|
|
include = clevercloud_storage_framework*
|
|
|
|
[options.package_data]
|
|
* = *.txt, *.rst, *.md
|
|
clevercloud_storage_framework = data/*.dat, *.json
|
|
|
|
[options.extras_require]
|
|
dev =
|
|
pytest>=6.0.0
|
|
pytest-html>=3.2.0
|
|
pytest-cov>=2.12.0
|
|
moto>=2.0.0
|
|
black>=21.5b2
|
|
isort>=5.9.1
|
|
flake8>=3.9.2
|
|
mypy>=0.812
|
|
|
|
[flake8]
|
|
max-line-length = 120
|
|
exclude = .git,__pycache__,build,dist
|
|
|
|
[isort]
|
|
profile = black
|
|
line_length = 120
|
|
|
|
[mypy]
|
|
python_version = 3.8
|
|
warn_return_any = True
|
|
warn_unused_configs = True
|
|
disallow_untyped_defs = True
|
|
disallow_incomplete_defs = True
|