forked from NZRS/wavetrace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 722 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 722 Bytes
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
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE.txt') as f:
license = f.read()
setup(
name='wavetrace',
version='4.0.3',
author='Alex Raichev',
packages=find_packages(exclude=('tests', 'docs')),
url='https://github.com/nzrs/wavetrace',
license=license,
data_files = [('', ['LICENSE.txt'])],
description='Python 3.5 tools to produce radio signal coverage reports, mostly for New Zealand',
long_description=readme,
install_requires=[
'requests>=2.20.0',
'Shapely>=1.6.4.post2',
'click>=7.0',
],
entry_points={
'console_scripts': ['wavey=wavetrace.cli:wavey'],
},
)