-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
33 lines (32 loc) · 910 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
30
31
32
33
from distutils.core import setup
setup(
# Application name:
name="getgfs",
# Version number (initial):
version="1.2.0",
# Application author details:
author="Jago Strong-Wright",
author_email="[email protected]",
# Packages
packages=["getgfs"],
# Details
url="https://getgfs.readthedocs.io/",
#
license="LICENSE.txt",
description="getgfs extracts weather forecast variables from the NOAA GFS forecast",
# Dependent packages (distributions)
install_requires=[
"scipy",
"requests",
"fuzzywuzzy",
"numpy",
"python_dateutil",
"regex",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Markup :: Markdown",
],
)