-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 806 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# Get the long description from the relevant file
with open('README.rst') as f:
long_description = f.read()
setup(
name='caiosm',
version=__import__("caiosm").__version__,
description="Tools to work with Club Alpino Italiano OpenStreetMap data",
keywords="Club Alpino Italiano,CAI,OpenStreetMap,OSM",
packages=find_packages(),
include_package_data=True,
install_requires=open('requirements.txt').read().splitlines(),
long_description=long_description,
author='Luca Delucchi',
author_email='luca.delucchi@fmach.it',
license='GPLv3+',
package_data={'caiosm': ['data/*']},
entry_points="""
[console_scripts]
caiosm=caiosm.scripts.caiosm:main
"""
)