-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
61 lines (54 loc) · 1.42 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
[project]
name = 'fflogsapi'
version = '2.1.2'
description = 'Python client for the FF Logs v2 API'
readme = 'README.md'
authors = [
{ name = 'Markus Wang Halvorsen', email = '[email protected]' },
]
keywords = ['api', 'client', 'ffxiv', 'fflogs', 'lazy']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries',
]
dependencies = [
'gql~=3.4.0',
'oauthlib~=3.2.2',
'requests_oauthlib~=1.3.1',
'requests_toolbelt~=0.10.1',
'cryptography~=42.0.5',
'urllib3~=1.26.14',
]
[project.optional-dependencies]
dev = [
'flake8==6.0.0',
'autopep8==2.0.1',
'isort==5.12.0',
'removestar==1.3.1',
'sphinx==7.2.5',
]
test = [
'pytest==7.2.1',
'pytest-cov==4.0.0',
]
[project.urls]
Repository = 'https://github.com/halworsen/fflogsapi'
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[tool.setuptools.packages.find]
include = ['fflogsapi*']
[tool.isort]
include_trailing_comma = true
line_length = 100
src_paths = ['fflogsapi', 'tests']
[tool.autopep8]
max-line-length = 100
in-place = true
recursive = true
[tool.pytest.ini_options]
# you typically do not want to run this as it nukes the query caches
addopts = '--ignore=tests/client/test_caching.py'