-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·33 lines (29 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# look here: http://python-packaging-user-guide.readthedocs.org/en/latest/current/
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='RPiNWR',
version='0.0.1',
description='Operate the Raspberry Pi NOAA Weather Radio Receiver and Decoder',
long_description="""
This library provides basic operations and demonstration of features for a Si4707-based weather radio
running on a Raspberry Pi.
""",
author='Jim Scarborough',
author_email='[email protected]',
url='https://github.com/ke4roh/RPiNWR',
license='GNU GPL v.3',
packages=find_packages(exclude=('tests', 'docs')),
# install_requires=['Adafruit_Python_GPIO'],
# dependency_links=[
# 'git+https://github.com/nioinnovation/Adafruit_Python_GPIO.git'
# ],
setup_requires=['pytest-runner', 'urllib3', 'shapely', 'iso8601'],
tests_require=['pytest'],
test_suite="tests",
)