-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.83 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "coingecko_py"
version = "1.0.0"
description = "A python API client for the coingecko API."
authors = ["Bryce Morrow <[email protected]>"]
maintainers = ["Bryce Morrow <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/brycemorrow4564/coingecko_py"
repository = "https://github.com/brycemorrow4564/coingecko_py"
packages = [
{ include = "coingecko_py" }
]
[tool.poetry.scripts]
# running unit + integration tests
test = "tests.scripts.runner:run_tests"
# used for generating client / metadata
get_data = "coingecko_py.scripts.swagger:generate_test_data"
generate_client = "coingecko_py.scripts.swagger:generate_client"
generate_test_data = "coingecko_py.scripts.swagger:generate_test_data"
generate_test_data_template = "coingecko_py.scripts.swagger:generate_test_data_template"
# used by github actions
get_cov = "coingecko_py.scripts.github:get_cov_percent"
get_cov_color = "coingecko_py.scripts.github:get_cov_color"
get_api_version = "coingecko_py.scripts.github:get_api_version"
is_client_updated = "coingecko_py.scripts.github:github_specs_equal"
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.27.1"
python-dotenv = "^0.19.2"
# dependencies for swagger-codegen generated code
certifi = "^2017.4.17" # changed
six = "^1.10"
python_dateutil = "^2.5.3"
urllib3 = "^1.25.10" # changed
[tool.poetry.dev-dependencies]
responses = "^0.16.0"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
black = {version = "^21.12b0", allow-prereleases = true }
toml = "^0.10.2"
deepdiff = "^5.7.0"
[build-system]
requires = [
"setuptools",
"poetry-core>=1.0.0"
]
build-backend = "poetry.core.masonry.api"