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