forked from k2shah/wadl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (31 loc) · 1.03 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
32
33
34
35
36
37
#!usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
requirements = ['numpy', 'matplotlib', 'scipy', 'tqdm',
'shapely', 'z3-solver', 'networkx', 'utm']
setup_requirements = ['pytest-runner', ]
test_requirements = ['pytest>=3', ]
setup(
name="wadl-planner",
author="Kunal Shah",
author_email='[email protected]',
python_requires='>=3.8',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
],
description="route planner for UAV surveys",
install_requires=requirements,
license="GNU General Public License v3 (GPL v3)",
include_package_data=True,
keywords='wadl',
packages=find_packages(include=['wadl', 'wadl.*']),
setup_requires=setup_requirements,
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/k2shah/wadl',
version='1.0.1',
zip_safe=False,
)