forked from rconradharris/python-noaa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 708 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
from setuptools.command.sdist import sdist
import noaa
setup(
name='noaa',
version=noaa.__version__,
description='Python Bindings to the NOAA National Digital Forecast '
'Database (NDFD)',
license='MIT License',
author='Rick Harris',
author_email='rconradharris@gmail.com',
url='https://github.com/rconradharris/python-noaa',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6'
],
install_requires=[],
scripts=["bin/noaa"])