-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.cfg
72 lines (68 loc) · 2.04 KB
/
setup.cfg
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
[metadata]
name = tongsuopy
version = attr: tongsuopy.__version__
description = Tongsuo Python SDK
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache-2.0
url = https://github.com/Tongsuo-Project/tongsuo-python-sdk
author = Tongsuo Project Authors
author_email = [email protected]
project_urls =
Documentation=https://www.yuque.com/tsdoc/ts
Source=https://github.com/Tongsuo-Project/tongsuo-python-sdk
Issues=https://github.com/Tongsuo-Project/tongsuo-python-sdk/issues
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: MacOS :: MacOS X
Operating System :: POSIX
Operating System :: POSIX :: BSD
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
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 :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Security :: Cryptography
[options]
python_requires = >=3.6
include_package_data = True
zip_safe = False
package_dir =
=src
packages = find:
# `install_requires` must be kept in sync with `pyproject.toml`
install_requires =
cffi >=1.12
[options.packages.find]
where = src
exclude =
_cffi
_cffi.*
[options.extras_require]
test =
pytest>=6.2.0
pytest-benchmark
pytest-cov
pytest-subtests
pytest-xdist
pep8test =
black
flake8
flake8-import-order
pep8-naming
[flake8]
ignore = E203,E211,W503,W504,N818
exclude = .tox,*.egg,.git,_build,.hypothesis,.venv
select = E,W,F,N,I
application-import-names = tongsuopy,tests