You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
590 B
23 lines
590 B
#!/usr/bin/env python3
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='location-ingest',
|
|
use_scm_version=True,
|
|
author='Markus Becker',
|
|
author_email='mabecker@ibr.cs.tu-bs.de',
|
|
url='https://gitlab.ibr.cs.tu-bs.de/mabecker/location-ingest',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'setuptools_scm',
|
|
'tqdm',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
# add entry points here
|
|
'loclib-ingest = ingest:cmd',
|
|
'loclib-validate = validate:cmd',
|
|
],
|
|
},
|
|
python_requires=">=3",
|
|
)
|