-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (54 loc) · 1.17 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
46
47
48
49
50
51
52
53
54
55
from setuptools import setup
setup(
name='vt',
version='1.0.0',
description='A simple template engine and Static Site Generator (SSG) for Python.',
author='FREDRICKKYEKI',
author_email='fredrickisaac14@yahoo.com',
url='https://vanilla-templates.onrender.com/',
install_requires=[
'attrs',
'beautifulsoup4',
'blinker',
'certifi',
'cffi',
'charset-normalizer',
'click',
'colorama',
'Flask',
'Flask-Cors',
'greenlet',
'h11',
'idna',
'itsdangerous',
'Jinja2',
'joblib',
'Markdown',
'MarkupSafe',
'numpy',
'outcome',
'pandas',
'pycparser',
'PySocks',
'python-dotenv',
'python-dateutil',
'pytz',
'requests',
'scikit-learn',
'selenium',
'six',
'sniffio',
'sortedcontainers',
'soupsieve',
'SQLAlchemy',
'threadpoolctl',
'trio',
'trio-websocket',
'typing_extensions',
'tzdata',
'urllib3',
'watchdog',
'Werkzeug',
'wsproto',
],
)