-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (47 loc) · 1.5 KB
/
Copy pathsetup.py
File metadata and controls
51 lines (47 loc) · 1.5 KB
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
from os import path
from setuptools import setup, find_packages
# the bedmap2 version
__version__ = "0.0.1"
# get the absolute path of this project
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
# the standard setup info
setup(
name="bedmap2",
version=__version__,
description="A Python interface to the Antarctic BEDMAP2 model. ",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rprechelt/bedmap2",
author="Remy L. Prechelt",
author_email="prechelt@hawaii.edu",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords=["antarctica dem bedmap2 ice"],
packages=["bedmap2"],
python_requires=">=3.6*, <4",
install_requires=["numpy", "rasterio", "cachetools", "wget", "matplotlib"],
extras_require={
"test": [
"pytest",
"isort",
"black",
"mypy",
"coverage",
"pytest-cov",
"flake8",
],
},
scripts=[],
project_urls={},
include_package_data=True,
)