-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 882 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
import setuptools as st
with open("README.md", "r") as f:
long_description = f.read()
with open("LICENSE.md", "r") as f:
license_text = f.read()
st.setup(
name="ftracker",
version="1.1.0",
author="Oskar @ FaSTTUBe",
author_email="[email protected]",
description="Small webapp to track who was in which room at which time to backtrace potential viral infections",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://git.fasttube.de/FaSTTUBe/ftracker",
packages=st.find_packages(exclude=['tests', 'docs']),
install_requires=[
"flask",
"tinydb",
"python-slugify",
"pywebpush",
],
license=license_text,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)