-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
56 lines (50 loc) · 1.96 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
#from distutils.core import setup
import os
import sys
from distutils import log
here = os.path.abspath(os.path.dirname(__file__))
README = "." #open(os.path.join(here, 'README.rst')).read()
NEWS = "." #open(os.path.join(here, 'NEWS.txt')).read()
install_requires=[
"numpy >= 1.1",
"scipy >= 0.9.0rc2",
"pandas >= 0.10.1",
"fluid >= 0.1.10",
],
version = '0.8.2'
setup(
name = 'pyrings',
version = version,
description = "Procedures to handle coherent vortexes in the ocean",
long_description=README + '\n\n' + NEWS,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='rings, eddies, ADCP, Gradient Balance',
author='Guilherme Castelao, Luiz Irber, Ana Villas Boas',
author_email='guilherme@castelao.net, luiz.irber@gmail.com',
url='http://pyrings.castelao.net',
license='PSF',
#download_url="https://github.com/castelao/pyrings/archive/master.zip",
#download_url="https://pypi.python.org/packages/source/r/rings/",
download_url="https://pypi.python.org/packages/source/p/pyrings/",
#py_modules=['rings.rings','rings_plots','rings.okuboweiss','okuboweiss_plot','rings.EddyTracking'],
#py_modules=['rings.ring', 'rings.utils', 'rings.fitt','rings.misc.montecarlo'],
#packages=find_packages(),
packages=['rings', 'rings.misc', 'rings.test'],
scripts=['bin/run_montecarlo.py',],
zip_safe=True,
install_requires=install_requires,
platforms = ['any']
)