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