Skip to content

Commit 43fc887

Browse files
committed
Move from setuptools to poetry
1 parent d61d368 commit 43fc887

File tree

3 files changed

+67
-46
lines changed

3 files changed

+67
-46
lines changed

poetry.lock

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
[tool.poetry]
2+
name = "python-client-sword2"
3+
version = "0.2.1"
4+
description = "SWORDv2 Python client"
5+
authors = [
6+
"Ben O'Steen <[email protected]>",
7+
"Cottage Labs <[email protected]>",
8+
]
9+
maintainers = [
10+
"Cottage Labs <[email protected]>",
11+
]
12+
readme = "README.md"
13+
license = "Apache-2.0"
14+
15+
homepage = "http://swordapp.org/"
16+
repository = "https://github.com/swordapp/python-client-sword2"
17+
documentation = "https://github.com/swordapp/python-client-sword2/wiki"
18+
19+
classifiers = [
20+
"Development Status :: 5 - Production/Stable",
21+
"Environment :: Console",
22+
"Environment :: Web Environment",
23+
"Intended Audience :: Developers",
24+
"Intended Audience :: Information Technology",
25+
"Intended Audience :: Science/Research",
26+
"License :: OSI Approved :: Apache Software License",
27+
"Natural Language :: English",
28+
"Operating System :: OS Independent",
29+
"Topic :: Communications",
30+
"Topic :: Internet",
31+
"Topic :: Internet :: WWW/HTTP",
32+
"Topic :: Software Development :: Libraries :: Python Modules",
33+
]
34+
35+
keywords=[ "sword-app", "atom", "sword2", "http" ]
36+
37+
packages = [
38+
{ include = "sword2" },
39+
]
40+
41+
[tool.poetry.dependencies]
42+
python = ">=3.7"
43+
httplib2 = "^0.18.1"
44+
45+
[tool.poetry.dev-dependencies]
46+
47+
[build-system]
48+
requires = ["poetry-core>=1.0.0"]
49+
build-backend = "poetry.core.masonry.api"

setup.py

Lines changed: 0 additions & 46 deletions
This file was deleted.

0 commit comments

Comments
 (0)