Skip to content

Commit

Permalink
Add flask requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
tae898 committed Nov 30, 2021
1 parent 317b846 commit b9db176
Showing 1 changed file with 10 additions and 16 deletions.
26 changes: 10 additions & 16 deletions web/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,25 @@
from setuptools.command.install import install

packages = find_packages()
version_str = "5.8.1"
version_str = '5.8.1'

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


setup(
name="conceptnet-web",
version=version_str,
description="Runs the Web site and API for ConceptNet",
author="Robyn Speer",
author_email="[email protected]",
name = 'conceptnet-web',
version = version_str,
description = 'Runs the Web site and API for ConceptNet',
author = "Robyn Speer",
author_email = '[email protected]',
packages=packages,
include_package_data=True,
install_requires=[
"conceptnet >= %s" % version_str,
"limits",
"flask >= 2.0.2",
"flask-cors >=3.0.10",
"flask-limiter >= 2.0.2",
"langcodes >= 2.1",
"jinja2-highlight",
"pygments",
"raven[flask] >= 6.6",
'conceptnet >= %s' % version_str,
'limits', 'flask >= 2.0.2', 'flask-cors >=3.0.10', 'flask-limiter >= 2.0.2',
'langcodes >= 2.1', 'jinja2-highlight', 'pygments', 'raven[flask] >= 6.6'
],
license="Apache License 2.0",
license = 'Apache License 2.0',
)

0 comments on commit b9db176

Please sign in to comment.