-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
82 lines (74 loc) · 2.33 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["ensembledata.*"]
namespaces = true
[tool.setuptools.package-data]
"ensembledata.api" = ["py.typed"]
[project]
name = "ensembledata"
authors = [
{ name = "EnsembleData", email = "hello@ensembledata.com" },
{ name = "Fayd Speare", email = "fayd@ensembledata.com" }
]
dynamic = ["version"]
readme = "README.md"
description = "Python bindings for the EnsembleData API"
dependencies = ["httpx", "typing-extensions; python_version == '3.7'" ]
requires-python = ">= 3.7"
license = { text = "LICENCE" }
keywords = ["ensembledata api", "tiktok api", "instagram api", "youtube api", "reddit api"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Typing :: Typed",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
[tool.setuptools.dynamic]
version = {attr = "ensembledata.api._version.version"}
[project.urls]
Homepage = "https://ensembledata.com"
Documenation = "https://ensembledata.com/apis/docs"
Repository = "/~https://github.com/ensembledata/ensembledata-python"
[tool.mypy]
strict = true
[tool.ruff]
target-version = "py37"
line-length = 100
[tool.ruff.lint]
select = [
"F", # pyflakes
"E", # pycodestyle
"W", # pycodestyle
"UP", # pyupgrade
"D", # pydocstyle
"C90", # mccabe
"I", # isort
"N", # pep8-naming
"B", # flake8-bugbear
"Q", # flake8-quotes
"SIM", # flake8-simplify
"RET", # flake8-return
"ISC", # flake8-implicit-str-concat
"INP", # flake8-no-pep420
"COM", # flake8-commas
"BLE", # flake8-blind-except
"FBT", # flake8-boolean-trap
"TCH", # flake8-type-checking
"ASYNC", # flake8-async
"ANN0", # flake8-annotations
"PL", # pylint
"PERF", # perflint
]
ignore = ["D1", "PLR0913", "ANN003", "D211", "D212", "ISC001", "COM812", "D203"]