-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
56 lines (53 loc) · 1.94 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
from setuptools import setup, find_packages
import sys, os
DISTNAME = "eoldas"
DESCRIPTION = "An Earth Observation Land Data Assimilation System (EO-LDAS)"
LONG_DESCRIPTION = open('README.txt').read()
MAINTAINER = 'Jose Gomez-Dans/NCEO & University College London'
MAINTAINER_EMAIL = "j.gomez-dans@ucl.ac.uk"
URL = 'http://github.com/jgomezdans/eoldas'
LICENSE = 'Undecided'
VERSION = "1.1.0"
DOWNLOAD_URL="https://github.com/jgomezdans/eoldas/zipball/master"
setup(name='eoldas',
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
keywords='',
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
url='http://www.assimila.eu/eoldas',
download_url=DOWNLOAD_URL,
license='',
packages=['eoldas'],
package_dir={'eoldas': 'eoldas'},
package_data={'eoldas': ['config_files/*.conf']},
#packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=["semidiscrete1>0.9",
"semidiscrete2>0.9",
"semidiscrete3>0.9",
"semidiscrete4>0.9"],
# "OpenOpt>=0.39"],
# "FuncDesigner>=0.39",
# "DerApproximator>=0.39",
# "SpaceFuncs>=0.39"],
# -*- Extra requirements: -*-
# It require the RT codes, but the package names are still in flux
#],
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: Fortran',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'
],
scripts=['scripts/eoldas_run.py'],
)