feat(setup.py): Update add dependencies for HTTP API

This commit is contained in:
Daniel S. 2019-10-23 11:35:54 +02:00
parent 42444551f6
commit 45c11da77d
1 changed files with 18 additions and 10 deletions

View File

@ -10,7 +10,7 @@ with open("README.md", "r") as fh:
setup( setup(
name="ed_lrr_gui", name="ed_lrr_gui",
version_format='{tag}.dev{commitcount}+{gitsha}', version_format="{tag}.dev{commitcount}+{gitsha}",
author="Daniel Seiller", author="Daniel Seiller",
author_email="earthnuker@gmail.com", author_email="earthnuker@gmail.com",
description="Elite: Dangerous long range route plotter", description="Elite: Dangerous long range route plotter",
@ -28,11 +28,7 @@ setup(
) )
], ],
packages=find_packages(), packages=find_packages(),
entry_points={ entry_points={"console_scripts": ["ed_lrr = ed_lrr_gui.__main__:main"]},
"console_scripts": [
"ed_lrr = ed_lrr_gui.__main__:main",
],
},
install_requires=[ install_requires=[
"appdirs", "appdirs",
"PyYAML", "PyYAML",
@ -44,7 +40,8 @@ setup(
"PyQt5", "PyQt5",
"click-default-group", "click-default-group",
"profig", "profig",
"colorama" "colorama",
"svgwrite",
], ],
setup_requires=[ setup_requires=[
"setuptools", "setuptools",
@ -52,15 +49,26 @@ setup(
"wheel", "wheel",
"pyinstaller", "pyinstaller",
"pytest-runner", "pytest-runner",
"setuptools-git-version" "setuptools-git-version",
], ],
tests_require=["pytest", "pytest-pep8", "pytest-cov"], tests_require=["pytest", "pytest-pep8", "pytest-cov"],
extras_require={ extras_require={
"dev": ["black", "pyinstaller","jinja2","svgwrite","tsp"], "dev": ["black", "pyinstaller", "jinja2", "tsp"],
"web": [
"flask",
"sqlalchemy",
"webargs",
"flask-sqlalchemy",
"sqlalchemy-utils",
],
}, },
classifiers=[ classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent", "Operating System :: OS Independent",
], ],
include_package_data=True, include_package_data=True,