Skip to content

Commit b9db176

Browse files
committed
Add flask requirements
1 parent 317b846 commit b9db176

1 file changed

Lines changed: 10 additions & 16 deletions

File tree

web/setup.py

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,25 @@
66
from setuptools.command.install import install
77

88
packages = find_packages()
9-
version_str = "5.8.1"
9+
version_str = '5.8.1'
1010

1111
if sys.version_info.major < 3:
1212
print("The ConceptNet 5 code can only run in Python 3.")
1313
sys.exit(1)
1414

1515

1616
setup(
17-
name="conceptnet-web",
18-
version=version_str,
19-
description="Runs the Web site and API for ConceptNet",
20-
author="Robyn Speer",
21-
author_email="rspeer@luminoso.com",
17+
name = 'conceptnet-web',
18+
version = version_str,
19+
description = 'Runs the Web site and API for ConceptNet',
20+
author = "Robyn Speer",
21+
author_email = 'rspeer@luminoso.com',
2222
packages=packages,
2323
include_package_data=True,
2424
install_requires=[
25-
"conceptnet >= %s" % version_str,
26-
"limits",
27-
"flask >= 2.0.2",
28-
"flask-cors >=3.0.10",
29-
"flask-limiter >= 2.0.2",
30-
"langcodes >= 2.1",
31-
"jinja2-highlight",
32-
"pygments",
33-
"raven[flask] >= 6.6",
25+
'conceptnet >= %s' % version_str,
26+
'limits', 'flask >= 2.0.2', 'flask-cors >=3.0.10', 'flask-limiter >= 2.0.2',
27+
'langcodes >= 2.1', 'jinja2-highlight', 'pygments', 'raven[flask] >= 6.6'
3428
],
35-
license="Apache License 2.0",
29+
license = 'Apache License 2.0',
3630
)

0 commit comments

Comments
 (0)