forked from Geosyntec/cloudside
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1.25 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
34
35
36
37
import os
import sys
from setuptools import setup, find_packages
PACKAGE_DATA = {
'cloudside.tests.data': ['*.txt', '*.png', '*.dat', '*.csv',],
'cloudside.tests.baseline_images.viz_tests': ['*.png'],
}
DESCRIPTION = "cloudside - download, assess, and visualize weather data"
if __name__ == '__main__':
setup(
name="cloudside",
version="0.1",
author="Paul Hobson",
author_email="[email protected]",
url="http://python-metar.sourceforge.net/",
description=DESCRIPTION,
long_description=DESCRIPTION,
package_data=PACKAGE_DATA,
download_url="http://sourceforge.net/project/platformdownload.php?group_id=134052",
license="BSD 3-Clause",
packages=find_packages(exclude=[]),
platforms="Python 3.6 and later.",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Visualization",
]
)