-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·41 lines (40 loc) · 1021 Bytes
/
setup.py
File metadata and controls
executable file
·41 lines (40 loc) · 1021 Bytes
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
from setuptools import setup, find_packages
setup(
name="SMSGuru",
version="0.1.0",
packages=['App_files'],
include_package_data=True,
install_requires=[
'absl-py==0.1.10',
'astor==0.6.2',
'bleach==1.5.0',
'click==6.7',
'enum34==1.1.6',
'Flask==1.0.2',
'gast==0.2.0',
'grpcio==1.23.0',
'gunicorn==19.9.0',
'html5lib==0.9999999',
'itsdangerous==0.24',
'Jinja2==2.10',
'Markdown==2.6.11',
'MarkupSafe==1.0',
'numpy==1.17.0',
'olefile==0.44',
'Pillow==6.1.0',
'protobuf==3.5.1',
'six==1.11.0',
'Werkzeug==0.14.1',
'wikipedia==1.4.0',
'nltk==3.3.0',
'duckduckpy==0.2',
'rake-nltk==1.0.4',
'google==2.0.2',
'truecase==0.0.4',
'requests==2.22.0',
'Flask-MySQL==1.4.0',
'mysql-connector-python==8.0.17',
'googletrans==2.4.0',
'readability-lxml==0.7.1'
]
)