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