-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
25 lines (21 loc) · 858 Bytes
/
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
# 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-shields',
description='Library for generating SVG shields for the Waymarkedtrail project.',
long_description=long_description,
version='0.1',
maintainer='Sarah Hoffmann',
maintainer_email='[email protected]',
url='https://github.com/waymarkedtrails/waymarkedtrails-shields',
license='GPL v3',
packages=['wmt_shields',
'wmt_shields.common',
'wmt_shields.styles'
],
package_data = { 'wmt_shields' : [ 'data/jel/**', 'data/kct/**', 'data/osmc/**' ] },
python_requires = ">=3.6",
)