-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
31 lines (27 loc) · 1.08 KB
/
setup.py
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
27
28
29
30
31
# SPDX-License-Identifier: GPL-3.0-only
# This file is part of the Waymarkedtrails Project
# Copyright (C) 2021 Sarah Hoffmann
from setuptools import setup
with open('README.md', 'r') as descfile:
long_description = descfile.read()
setup(name='waymarkedtrails-backend',
description='Database backend and rendering data for the Waymarkedtrails project.',
long_description=long_description,
version='0.1',
maintainer='Sarah Hoffmann',
maintainer_email='[email protected]',
url='https://github.com/waymarkedtrails/waymarkedtrails-backend',
license='GPL 3.0',
packages=['wmt_db',
'wmt_db.config',
'wmt_db.common',
'wmt_db.styles',
'wmt_db.tables',
'wmt_db.maptype'
],
package_data = {'wmt_db' : ['data/mapnik/**', 'data/shields/**',
'data/map-styles/**', 'data/map-styles/inc/**',
'data/map-styles/macros/**']},
scripts=['wmt-makedb'],
python_requires = ">=3.6",
)