-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (35 loc) · 1018 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
import setuptools
try:
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
except FileNotFoundError:
long_description = 'Not provided'
setuptools.setup(
name="jire",
version="0.0.1",
author="Christian Lölkes",
author_email="[email protected]",
description="Jitsi reservation system",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/loelkes/jire",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Flask",
"Programming Language :: Python :: 3.6",
"Topic :: Communications :: Conferencing",
],
python_requires='>=3.6',
install_requires=[
'sqlalchemy',
'Flask',
'Flask-Bootstrap4',
'python-dotenv',
'Flask-API',
'Flask-WTF',
'WTForms==3.0.0a1',
'python-dateutil',
'pytz',
],
)