00f018c61c
Updates the requirements on [python-slugify](https://github.com/un33k/python-slugify) to permit the latest version. - [Release notes](https://github.com/un33k/python-slugify/releases) - [Changelog](https://github.com/un33k/python-slugify/blob/master/CHANGELOG.md) - [Commits](https://github.com/un33k/python-slugify/compare/5.0.2...v6.1.2) --- updated-dependencies: - dependency-name: python-slugify dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
34 lines
919 B
Python
34 lines
919 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="openbikesensor-api",
|
|
version="0.0.1",
|
|
author="OpenBikeSensor Contributors",
|
|
license="LGPL-3.0",
|
|
description="OpenBikeSensor Portal API",
|
|
url="https://github.com/openbikesensor/portal",
|
|
packages=find_packages(),
|
|
package_data={},
|
|
install_requires=[
|
|
"coloredlogs~=15.0.1",
|
|
"sanic>=21.9.3,<22.7.0",
|
|
"oic>=1.3.0, <2",
|
|
"sanic-session~=0.8.0",
|
|
"sanic-cors~=2.0.1",
|
|
"python-slugify>=5.0.2,<6.2.0",
|
|
"motor>=2.5.1,<3.1.0",
|
|
"pyyaml<6",
|
|
"sqlparse~=0.4.2",
|
|
"openmaptiles-tools", # install from git
|
|
"pyshp>=2.2,<2.4",
|
|
"sqlalchemy[asyncio]~=1.4.25",
|
|
"asyncpg~=0.24.0",
|
|
"alembic~=1.7.7",
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"openbikesensor-api=obs.bin.openbikesensor_api:main",
|
|
]
|
|
},
|
|
)
|