Files
openfreemap/setup.py
Zsolt Ero a960d4de8d nginxfmt
2023-12-20 14:25:11 +01:00

18 lines
251 B
Python

from setuptools import setup
requirements = [
'fabric',
'ruff',
'python-dotenv',
'click',
'nginxfmt',
]
setup(
name='openfreemap',
python_requires='>=3.10',
install_requires=requirements,
packages=['ssh_lib'],
)