-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 930 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (32 loc) · 930 Bytes
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
26
27
28
29
30
31
32
33
34
35
[tool.poetry]
name = "pocketsmith-api"
version = "2.1.0"
description = "Pocketsmith API client"
authors = ["Zach \"theY4Kman\" Kanzler <they4kman@gmail.com>"]
license = "MIT"
homepage = 'https://github.com/theY4Kman/python-pocketsmith-api'
readme = 'README.md'
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Internet :: WWW/HTTP',
]
packages = [
{ include = 'pocketsmith' },
{ include = 'LICENSE', format = 'sdist' },
{ include = 'CHANGELOG.md', format = 'sdist' },
]
[tool.poetry.dependencies]
certifi = "*"
python = ">=3.6"
python-dateutil = "*"
six = "*"
urllib3 = { version = "*", extras = ["secure"] }
[tool.poetry.dev-dependencies]
pytest = ">=3.6"
pytest-camel-collect = "^1.0.1"
tox = "^3.20.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"