mirror of
https://github.com/hyperknot/openfreemap.git
synced 2026-05-21 14:02:15 +00:00
21 lines
294 B
Python
21 lines
294 B
Python
from setuptools import find_packages, setup
|
|
|
|
|
|
requirements = [
|
|
'click',
|
|
'fabric',
|
|
'nginxfmt',
|
|
'python-dotenv',
|
|
'ruff',
|
|
'marko',
|
|
'requests',
|
|
'jsonschema',
|
|
]
|
|
|
|
|
|
setup(
|
|
python_requires='>=3.10',
|
|
install_requires=requirements,
|
|
packages=find_packages(),
|
|
)
|