-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 980 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='weather_scheduler',
version='0.9.0',
description='Schedule events based on the weather information.',
long_description="""The weather_scheduler program gets weather information
for a specific location, date and time. The weather data can be used in
event templates that can be emailed to a group of people.""",
url='https://github.com/mbruzek/weather-scheduler',
author='Matthew Bruzek',
author_email='[email protected]',
keywords='python weather schedule recurring email event',
packages=find_packages(exclude=['examples', 'templates', 'tests']),
install_requires=['Jinja2', 'requests'],
extras_require={'test': ['pytest']},
project_urls={
'Bug Reports': 'https://github.com/mbruzek/weather-scheduler/issues',
'Source': 'https://github.com/mbruzek/weather-scheduler',
}
)