-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
38 lines (35 loc) · 1.04 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
[build-system]
requires = ["setuptools>=61.0.0","wheel","pybind11>=2.10.3"]
build-backend = "setuptools.build_meta"
[project]
name = "krptn"
version = "0.8.6"
description = "IAM and data encryption at rest"
readme = "README.md"
authors = [
{ name="Krptn Project", email="contact@krptn.dev" },
]
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Framework :: Django',
'Framework :: Flask'
]
requires-python=">3.9"
dependencies=["SQLAlchemy>=1.4.0", "webauthn>=1.6.0"]
[project.optional-dependencies]
"MSSQL" = ["pyodbc"]
"MySQL" = ["mysqlclient"]
"PostgreSQL" = ["psycopg2"]
"Django" = ["django"]
"Flask" = ["flask"]
"tests" = ["django"]
[project.urls]
'Homepage'= "https://www.krptn.dev/"
'Documentation'= "https://docs.krptn.dev/"
'GitHub'= "https://github.com/krptn/krypton/"
'Bug Tracker'= "https://github.com/krptn/krypton/issues"