-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1.17 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
from setuptools import setup, find_packages
import os
# Get the version info we do this to avoid importing __init__, which
# depends on other packages that may not yet be installed.
base_dir = os.path.abspath(os.path.dirname(__file__))
version = {}
with open(base_dir + "/cmist/_version.py") as fp:
exec(fp.read(), version)
config = dict(
name='cmist-lib',
version=version['__version__'],
description='A library for accessing data in the NOAA cmist webpage',
author='Levi Kilcher',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Topic :: Scientific/Engineering',
],
url='http://github.com/lkilcher/cmist',
packages=find_packages(),
# ['dolfyn', 'dolfyn.adv', 'dolfyn.io', 'dolfyn.data',
# 'dolfyn.rotate', 'dolfyn.tools', 'dolfyn.adp', ],
package_data={'': ['data/coops_stations.json']},
include_package_data=True,
install_requires=['scipy', 'xarray', 'selenium', 'pandas'],
provides=['cmist', ],
)
setup(**config)