-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·41 lines (38 loc) · 946 Bytes
/
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
#! /usr/bin/env python3
"""Install script."""
from setuptools import setup
setup(
name="comcat",
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=[
"authlib",
"ccmessenger",
"cmslib",
"comcatlib",
"damage_report",
"filedb",
"flask",
"hinews",
"hisfs",
"lptlib",
"marketplace",
"mdb",
"mtcaptcha",
"newslib",
"notificationlib",
"peewee",
"peeweeplus",
"qrcode",
"reportlib",
"tenantcalendar",
"tenantforum",
"wsgilib",
],
packages=["comcat", "comcat.damage_report"],
description="HOMEINFO ComCat.",
)