Skip to content

Commit

Permalink
Move from setuptools to poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdutton committed Jan 12, 2021
1 parent d61d368 commit 43fc887
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 46 deletions.
18 changes: 18 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 49 additions & 0 deletions pyproject.toml
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"
46 changes: 0 additions & 46 deletions setup.py

This file was deleted.

0 comments on commit 43fc887

Please sign in to comment.