-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
executable file
·32 lines (29 loc) · 1.06 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
classifiers = """\
Development Status :: stable
Environment :: Console
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: GPL
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering
Topic :: Software Development :: Libraries :: Python Modules
"""
setup(
name = "TAPPY",
version = "0.10.2",
author = "Tim Cera, Pierre Cazenave",
author_email = "[email protected], [email protected]",
description = ("TAPPY is a tidal analysis package. It breaks down an hourly record of water levels into the component sine waves."),
license = "GPLv2",
keywords = "harmonic analysis, tides, ellipses, consituents",
platforms = "any",
url = "http://sourceforge.net/projects/tappy, http://gitlab.em.pml.ac.uk/pica/PyFVCOM, https://github.com/pwcazenave/tappy",
packages=['tappy', 'tappy.tappy_lib'],
long_description=read('README.md'),
classifiers=classifiers
)