-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.05 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="OSD2F",
python_requires=">3.8",
version="0.1.1",
description="Open Source Data Donation Framework",
author="Bob van de Velde",
author_email="[email protected]",
license=open("LICENSE").read(),
url="https://github.com/uvacw/osd2f",
packages=find_packages(),
package_data={
"osd2f": [
"static/*",
"templates/*",
"templates/*/*",
"settings/*",
"static/js/*",
"static/js/libarchive/*",
"static/js/libarchive/wasm-gen/*",
]
},
scripts=["bin/osd2f", "bin/osd2f-decrypt-submissions"],
install_requires=[
"asyncpg",
"azure-keyvault-secrets",
"azure-identity",
"cryptography",
"hypercorn",
"msal",
"pyyaml",
"pydantic",
"pydantic[email]",
"pyjwt>=2.4.0", # dependency of MSAL, insecure < 2.4.0
"pyzipper",
"quart",
"tortoise-orm",
],
)