-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
38 lines (32 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
32
33
34
35
36
37
38
#!usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
requirements = ['numpy', 'matplotlib', 'scipy', 'tqdm',
'shapely', 'networkx', 'utm', 'fastkml', 'lxml',
'z3-solver', 'cvxpy', 'cvxopt']
setup_requirements = ['pytest-runner', ]
test_requirements = ['pytest>=3', ]
setup(
name="wadl-planner",
author="Kunal Shah",
author_email='k2shah@stanford.edu',
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.1.1',
zip_safe=False,
)