mirror of
https://github.com/hyperknot/openfreemap.git
synced 2026-05-21 14:02:15 +00:00
setup.py work
This commit is contained in:
@@ -1,7 +1,13 @@
|
||||
from setuptools import setup
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
|
||||
requirements = [
|
||||
'click',
|
||||
]
|
||||
|
||||
|
||||
setup(
|
||||
python_requires='>=3.10',
|
||||
packages=['http_host_lib'],
|
||||
install_requires=requirements,
|
||||
packages=find_packages(),
|
||||
)
|
||||
|
||||
@@ -11,6 +11,5 @@ venv/bin/pip -V
|
||||
|
||||
venv/bin/pip install -U pip wheel setuptools
|
||||
|
||||
venv/bin/pip install click requests
|
||||
|
||||
|
||||
|
||||
13
scripts/tile_gen/setup.py
Normal file
13
scripts/tile_gen/setup.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
|
||||
requirements = [
|
||||
'click',
|
||||
]
|
||||
|
||||
|
||||
setup(
|
||||
python_requires='>=3.10',
|
||||
install_requires=requirements,
|
||||
packages=find_packages(),
|
||||
)
|
||||
0
scripts/tile_gen/tile_gen_lib/__init__.py
Normal file
0
scripts/tile_gen/tile_gen_lib/__init__.py
Normal file
Reference in New Issue
Block a user