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