File size: 580 Bytes
f630bbd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages

setup(
    name="texlab",
    version="1.0.0",
    packages=find_packages(),
    install_requires=[
        "Flask==2.3.3",
        "Flask-Login==0.6.3",
        "requests==2.31.0",
        "requests-oauthlib==1.3.1",
        "Flask-Mail==0.9.1",
        "PyMySQL==1.1.0",
        "mysql-connector-python==8.0.33",
        "numpy==1.24.3",
        "sympy==1.12",
        "matplotlib==3.7.1",
        "Pillow==9.5.0",
        "python-dotenv==1.0.0",
        "gunicorn==21.2.0"
    ],
    python_requires=">=3.9",
)