-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
58 lines (50 loc) · 1.24 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
[build-system]
requires = ['flit_core >=3.2,<4']
build-backend = 'flit_core.buildapi'
[project]
name = "fipiran"
description = "a library to retrieve data from fipiran.ir website"
keywords = ["fipiran", "client"]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.10",
]
requires-python = ">=3.12"
dynamic = ["version"]
dependencies = [
"aiohutils >= 0.16.0",
"beautifulsoup4",
"jdatetime",
"lxml",
"pandas[pyarrow] >= 2.2.1",
]
[project.optional-dependencies]
test = [
"aiohutils[tests] >= 0.16.1",
]
[[authors]]
name = "5j9"
email = "[email protected]"
[project.license]
text = "GNU General Public License v3 (GPLv3)"
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.urls]
Homepage = "https://github.com/5j9/fipiran"
[tool.flit.sdist]
exclude = ['tests/']
[tool.ruff]
line-length = 79
format.quote-style = 'single'
lint.isort.combine-as-imports = true
lint.extend-select = [
'I', # isort
'UP', # pyupgrade
]
lint.ignore = [
'UP027', # list comprehensions are faster than generator expressions
'E721', # Do not compare types, use `isinstance()`
]
[tool.pytest.ini_options]
addopts = '--quiet --tb=short'