-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (40 loc) · 1.54 KB
/
setup.py
File metadata and controls
46 lines (40 loc) · 1.54 KB
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
45
46
from setuptools import find_packages, setup
def main():
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='advocate',
version="0.2.0", #TODO: inject version automaticly from git tags?
description='advocate - API for Data Verification, On-Chaining and Anchoring in the Teadal Environment',
license='MIT', #TODO: check if this is the right license
author='Sebastian Werner, Fernando Castillo, Sepideh Masoudi, Fabian Piper, Felix Graph, Mathis Kähler, Kevin Pham, Luka Banse',
author_email='werner@tu-berlin.de',
url="https://teadal.eu/tools/advocate",
packages=find_packages(),
install_requires=[
'flask>=2.3,<3.0',
'requests>=2.31,<3.0',
'grpcio>=1.56.0,<2.0',
'protobuf>=3.19,<=3.21',
'dynaconf>=3.2,<4.0',
'web3>=5.31,<6.0',
'jsonpatch>=1.33,<2.0',
'sqlalchemy>=2.0,<3.0',
'kubernetes>=28.1,<29.0',
'cryptography>=41.0,<42.0',
'kink==0.7.0',
'ed25519>=1.5,<2.0',
'psycopg2-binary',
'opentelemetry-api==1.15.0',
'opentelemetry-sdk==1.15.0',
'jaeger-client',
'backoff==2.2.1',
],
# dependency_links=[""],
python_requires=">=3.9",
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown"
)
if __name__ == "__main__":
main()