-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.cfg
38 lines (36 loc) · 960 Bytes
/
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
[metadata]
name = arrowhead-client
version = attr: _version.__version__
author = Jacob Nilsson
author_email = [email protected]
license = EPL-2.0
description = Arrowhead client library
url = https://github.com/arrowhead-f/client-library-python
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Operating System :: POSIX :: Linux
License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)
[options]
packages = find:
python_requires = >=3.7
install_requires =
FastAPI
aiohttp[standard]
uvicorn
Flask>=1.0.2
requests>=2.21
cryptography>=3.3.2
jwcrypto==0.8
six
[options.packages.find]
exclude =
tests
tests.*
examples