Tests are passing, but we loose the by-domain configuration (#19) Squashed commit of the following: commit d75fafcb9a043ac2540b2ac135704721b002d3c0 Author: Maxime Alves LIRMM <maxime.alves@lirmm.fr> Date: Thu Sep 2 14:40:05 2021 +0200 fix #21 commit 38c59e4ea3b40bd230f2add2bb0e05772913c097 Author: Maxime Alves LIRMM <maxime.alves@lirmm.fr> Date: Thu Sep 2 01:13:51 2021 +0200 [deps] starlette 0.15 (breaks tests) FAILED tests/test_debug_routes.py::test_current_user - AttributeError: 'DomainMiddleware' object has no attribute 'call_next' FAILED tests/test_debug_routes.py::test_log - AttributeError: 'DomainMiddleware' object has no attribute 'call_next' FAILED tests/test_debug_routes.py::test_error - AttributeError: 'DomainMiddleware' object has no attribute 'call_next' FAILED tests/test_dummy_project_router.py::test_get_route - AttributeError: 'DomainMiddleware' object has no attribute 'call_next' FAILED tests/test_dummy_project_router.py::test_delete_route - AttributeError: 'DomainMiddleware' object has no attribute 'call_next' FAILED tests/test_lib_schemas.py::test_get_api_routes - AttributeError: 'DomainMiddleware' object has no attribute 'call_next' FAILED tests/test_lib_schemas.py::test_get_schema_route - AttributeError: 'DomainMiddleware' object has no attribute 'call_next' FAILED tests/test_lib_schemas.py::test_get_api_dummy_domain_routes - AttributeError: 'DomainMiddleware' object has no attribute 'call_next'
80 lines
2.1 KiB
Python
Executable File
80 lines
2.1 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
import re
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
import pathlib
|
|
|
|
here = pathlib.Path(__file__).parent.resolve()
|
|
long_description = (here / 'README.md').read_text(encoding='utf-8')
|
|
|
|
def get_version(package):
|
|
"""
|
|
Return package version as listed in `__version__` in `init.py`.
|
|
"""
|
|
with open(os.path.join(package, "__init__.py")) as f:
|
|
return re.search("__version__ = ['\"]([^'\"]+)['\"]", f.read()).group(1)
|
|
|
|
|
|
def get_packages(package):
|
|
"""
|
|
Return root package and all sub-packages.
|
|
"""
|
|
return [
|
|
dirpath
|
|
for dirpath, dirnames, filenames in os.walk(package)
|
|
if os.path.exists(os.path.join(dirpath, "__init__.py"))
|
|
]
|
|
|
|
module_name="halfapi"
|
|
setup(
|
|
name=module_name,
|
|
version=get_version(module_name),
|
|
url="https://github.com/halfAPI/halfapi",
|
|
description="Core to write deep APIs using a module's tree",
|
|
author="Maxime ALVES",
|
|
author_email="maxime@freepoteries.fr",
|
|
license="GPLv3",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
packages=get_packages(module_name),
|
|
python_requires=">=3.8",
|
|
install_requires=[
|
|
"PyJWT>=2.0.1",
|
|
"starlette>=0.15,<0.16",
|
|
"click>=7.1,<8",
|
|
"uvicorn>=0.13,<1",
|
|
"orjson>=3.4.7,<4",
|
|
"pyyaml>=5.3.1,<6",
|
|
"timing-asgi>=0.2.1,<1"
|
|
],
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
],
|
|
extras_require={
|
|
"tests":[
|
|
"pytest",
|
|
"requests",
|
|
"pytest-asyncio",
|
|
"pylint"
|
|
]
|
|
},
|
|
entry_points={
|
|
"console_scripts":[
|
|
"halfapi=halfapi.cli.cli:cli"
|
|
]
|
|
},
|
|
keywords="web-api development boilerplate",
|
|
project_urls={
|
|
"Source": "https://github.com/halfAPI/halfapi",
|
|
}
|
|
)
|