-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·45 lines (42 loc) · 1.16 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
45
#! /usr/bin/env python3
"""Install script."""
from setuptools import setup
setup(
name="comcatlib",
use_scm_version={"local_scheme": "node-and-timestamp"},
setup_requires=["setuptools_scm"],
author="HOMEINFO - Digitale Informationssysteme GmbH",
author_email="<[email protected]>",
maintainer="Richard Neumann",
maintainer_email="<[email protected]>",
install_requires=[
"argon2_cffi",
"authlib",
"cmslib",
"configlib",
"damage_report",
"emaillib",
"filedb",
"firebase_admin",
"flask",
"marketplace",
"mdb",
"notificationlib",
"oauth2gen",
"peewee",
"peeweeplus",
"requests",
"tenantcalendar",
"tenantforum",
"werkzeug",
"wsgilib",
],
packages=["comcatlib", "comcatlib.demo", "comcatlib.messages", "comcatlib.orm"],
data_files=[
("/usr/local/share/comcatlib/", ["files/authorize.html", "files/login.html"])
],
entry_points={
"console_scripts": ["comcat-demo-reset = comcatlib.demo.manager:main"]
},
description="Shared libraries for ComCat.",
)