forked from shmokmt/app-store-connect-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (33 loc) · 994 Bytes
/
pyproject.toml
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
36
37
[tool.poetry]
name = "app-store-connect-client"
version = "0.0.0"
description = "Python package for App Store connect Analytics."
authors = ["shmokmt <[email protected]>"]
homepage = "https://github.com/shmokmt"
repository = "https://github.com/shmokmt/app-store-connect-client"
documentation = "https://github.com/shmokmt/app-store-connect-client/wiki"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
"Topic :: Internet :: WWW/HTTP",
]
[tool.poetry.dependencies]
python = "^3.6"
requests = "^2.23.0"
black = "^19.10b0"
python-dotenv = "^0.13.0"
jsonschema = "^3.2.0"
python-dateutil = "^2.8.1"
[tool.poetry-dynamic-versioning]
enable = true
style = "pep440"
[tool.poetry.dev-dependencies]
pytest = "^5.4.1"
rope = "^0.16.0"
python-dotenv = "^0.13.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"