-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
44 lines (42 loc) · 1.12 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
[metadata]
name = kisee
# Format is YY.MM.patch (see https://calver.org/)
version = attr: kisee.__version__
description = HTTP server managing identities
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
author = Julien Palard
author_email = [email protected]
url = https://github.com/meltygroup/kisee
license = MIT License
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Information Technology
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = find:
python_requires = >= 3.6
install_requires =
aiocontextvars
aiohttp
aiohttp-cors
aiojobs
aiomysql
asyncpg
bcrypt
jsonpatch
pyjwt[crypto]>=2.0.0
requests # To avoid a conflict with idna dependency in dev requirements.
shortuuid
toml
werkzeug
[options.entry_points]
console_scripts =
kisee=kisee.kisee:main
kisee-quickstart=kisee.quickstart:main