-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.18 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
43
44
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="metadata-api",
version="0.0.1",
author="Origo Dataplattform",
author_email="[email protected]",
description="Api for managing metadata catalogue",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/oslokommune/okdata-metadata-api/",
py_modules=[
"metadata.common",
"metadata.dataset.handler",
"metadata.version.handler",
"metadata.edition.handler",
"metadata.distribution.handler",
"metadata.CommonRepository",
"metadata.dataset.repository",
"metadata.version.repository",
"metadata.edition.repository",
"metadata.distribution.repository",
],
install_requires=[
"boto3",
"black",
"isort",
"jinja2",
"markupsafe",
"aws-xray-sdk",
"requests",
"simplejson",
"jsonschema[format]",
"strict-rfc3339",
"okdata-aws>=4.1",
"python-keycloak",
"okdata-resource-auth",
],
python_requires="==3.12.*",
)