-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
63 lines (55 loc) · 1.44 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
[tool.poetry]
name = "aiothrift"
version = "0.2.7"
description = "Async Thrift server and client"
authors = ["Ryan Wang <[email protected]>"]
license = "MIT"
keywords = ["thrift", "thriftpy", "asyncio"]
readme = "README.rst"
homepage = "http://github.com/moonshadow/aiothrift/"
repository = "http://github.com/moonshadow/aiothrift/"
documentation = "https://aiothrift.readthedocs.org/"
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
]
[tool.poetry.dependencies]
python = "^3.7"
async-timeout = ">=3.0.1,<5.0.0"
thriftpy2 = "^0.4.9"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
pytest-asyncio = "^0.18.3"
sphinx = "^4.0.3"
black = "^22.3"
pre-commit = "^2.13.0"
flake8 = "^4.0.1"
[tool.black]
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"