-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d61d368
commit 43fc887
Showing
3 changed files
with
67 additions
and
46 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
[tool.poetry] | ||
name = "python-client-sword2" | ||
version = "0.2.1" | ||
description = "SWORDv2 Python client" | ||
authors = [ | ||
"Ben O'Steen <[email protected]>", | ||
"Cottage Labs <[email protected]>", | ||
] | ||
maintainers = [ | ||
"Cottage Labs <[email protected]>", | ||
] | ||
readme = "README.md" | ||
license = "Apache-2.0" | ||
|
||
homepage = "http://swordapp.org/" | ||
repository = "https://github.com/swordapp/python-client-sword2" | ||
documentation = "https://github.com/swordapp/python-client-sword2/wiki" | ||
|
||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Information Technology", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Topic :: Communications", | ||
"Topic :: Internet", | ||
"Topic :: Internet :: WWW/HTTP", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
|
||
keywords=[ "sword-app", "atom", "sword2", "http" ] | ||
|
||
packages = [ | ||
{ include = "sword2" }, | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.7" | ||
httplib2 = "^0.18.1" | ||
|
||
[tool.poetry.dev-dependencies] | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" |