-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
53 lines (49 loc) · 1.66 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
import re
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
version = re.search(
'^__version__\\s*=\\s*"(.*)"',
open('globsim/_version.py').read(),
re.M
).group(1)
setuptools.setup(
name="globsim",
version=version,
author="Stephan Gruber",
author_email="[email protected]",
description="Using global reanalysis data for local permafrost simulation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/geocryology/globsim",
packages=['globsim',
'globsim.download',
'globsim.interpolate',
'globsim.scale'],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Atmospheric Science"
],
entry_points={
'console_scripts': [
'globsim = globsim.globsim_cli:main',
]},
install_requires=['lxml',
'numpy>=2',
'pandas',
'netCDF4',
'scipy',
'dask',
'xarray',
'pydap>=3.4.1', # TODO: resolve the change to open_dods_url and make sure it works
'tomlkit',
'cdsapi>=0.7.3',
'psutil',
'pysolar',
'pytz']
)