forked from regeirk/pycwt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 736 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 736 Bytes
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
AUTHORS = ("Nabil Freij, Sebastian Krieger, Alexey Brazhe, Christopher "
"Torrence, Gilbert P. Compo and contributors")
setup(
name = "pycwt",
version = "0.2",
author = AUTHORS,
description = ("Continuous wavelet transform module for Python."),
license = "BSD",
url = "https://github.com/regeirk/pycwt",
packages=['pycwt'],
install_requires=['numpy','matplotlib','scipy'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
)