-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 948 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 948 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-web-client'
version = "0.1.1"
description = 'Pocketsmith web/realtime client, for things the API does not provide'
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_web' },
{ include = 'LICENSE', format = 'sdist' },
{ include = 'CHANGELOG.md', format = 'sdist' },
]
[tool.poetry.dependencies]
python = '>=3.6.1'
aiostream = '^0.4.1'
beautifulsoup4 = "^4.7.1"
httpx = "^0.15.5"
lifter = '^0.4.1'
pyotp = "^2.3.0"
websockets = '^8.1'
[tool.poetry.dev-dependencies]
[build-system]
requires = ['poetry-core>=1.0.0']
build-backend = 'poetry.core.masonry.api'