-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 776 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
29
from setuptools import setup, find_packages
setup(
name='InreachGroundControl',
version='0.1.0',
description='A command line utility for sending weather reports to the middle of nowhere.',
url='https://github.com/andrewgordstewart/inreach-ground-control',
author='Andrew Stewart',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=[
'bs4',
'datetime',
'imapclient',
'forecastiopy',
'psycopg2',
'pytest',
'requests',
'sqlalchemy',
],
python_requires='>=3.6',
entry_points='''
[console_scripts]
weather_report=inreach_ground_control.weather_report:cli
''',
)