-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
74 lines (65 loc) · 1.64 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
[build-system]
requires = ['flit_core >=3.2,<4']
build-backend = 'flit_core.buildapi'
[project]
name = 'tsetmc'
authors = [
{ name = '5j9', email = '5j9@users.noreply.github.com' },
]
description = 'a library to retrieve data from tsetmc.com website'
keywords = [
'tsetmc',
'client',
]
classifiers = [
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.12',
]
requires-python = '>=3.12'
dynamic = [
'version',
]
dependencies = [
'aiohutils >= 0.15.0',
'jdatetime',
'lxml',
'numpy',
'pandas >= 2.1.0',
'pyarrow', # pd.options.future.infer_string = True
]
[project.optional-dependencies]
test = [
'aiohutils[test] >= 0.15.0',
]
[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/tsetmc'
[tool.flit.sdist]
exclude = ['tests', 'dev', '.gitattributes', 'sample_scripts']
[tool.ruff]
line-length = 79
format.quote-style = 'single'
lint.isort.combine-as-imports = true
lint.extend-select = [
'FA', # flake8-future-annotations
'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'
[tool.pyright]
typeCheckingMode = 'standard'
reportDeprecated = "warning"
reportPropertyTypeMismatch = "warning"
reportUnnecessaryCast = "warning"
reportUnnecessaryContains = "warning"
reportUnnecessaryIsInstance = "warning"
reportUnnecessaryTypeIgnoreComment = true