10ced9d65e
Updates the requirements on [pyshp](https://github.com/GeospatialPython/pyshp) to permit the latest version. - [Release notes](https://github.com/GeospatialPython/pyshp/releases) - [Changelog](https://github.com/GeospatialPython/pyshp/blob/master/changelog.txt) - [Commits](https://github.com/GeospatialPython/pyshp/compare/2.2.0...2.3.1) --- updated-dependencies: - dependency-name: pyshp dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
34 lines
897 B
Python
34 lines
897 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",
|
|
"oic>=1.3.0, <2",
|
|
"sanic-session~=0.8.0",
|
|
"sanic-cors~=2.0.1",
|
|
"python-slugify~=5.0.2",
|
|
"motor~=2.5.1",
|
|
"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",
|
|
]
|
|
},
|
|
)
|