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