forked from waymarkedtrails/waymarkedtrails-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 870 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
26
27
28
# 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-api',
description='Rest API for the Waymarkedtrails project.',
long_description=long_description,
version='0.1',
maintainer='Sarah Hoffmann',
maintainer_email='[email protected]',
url='https://github.com/waymarkedtrails/waymarkedtrails-api',
license='GPL 3.0',
packages=['wmt_api',
'wmt_api.common',
'wmt_api.api',
'wmt_api.api.listings',
'wmt_api.api.details',
'wmt_api.api.tiles',
'wmt_api.output'
],
python_requires = ">=3.6",
)