-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
25 lines (21 loc) · 974 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "obs-s3-client"
version = "0.0.28"
description = "Open-source S3 client library in python to support ObjectScales proprietary S3 extensions"
readme = "README.md"
authors = [ {name="Drayer Sivertsen", email="drayer.sivertsen@wsu.edu"}, {name="Nathan Marugame", email="nathan.marugame@wsu.edu"}, {name="Killian Griffin", email="killian.griffin@wsu.edu"} ]
classifiers = [ 'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries' ]
keywords = [ 'ObjectScale', 'S3', 'Dell', 'boto3', 'botocore' ]
dependencies = [ 'boto3' ]
[project.optional-dependencies]
dev = [ 'unittest', 'pytest' ]
[project.urls]
Homepage = "https://github.com/EMCECS/objectscale-s3-client-python"