-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
73 lines (63 loc) · 1.83 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2021, MeteoSwiss, the authors
from setuptools import setup, find_packages
requirements = [
"netcdf4",
"numba",
"dask",
"numpy",
"pandas",
"scipy",
"utm",
"xarray",
"yaconfigobject",
]
setup_requirements = [
"setuptools_scm",
]
test_requirements = [
"pytest",
]
extras = {
"test": test_requirements,
}
packages = find_packages(include=["topo_descriptors"])
package_dir = {}
package_data = {}
setup(
name="topo-descriptors",
packages=packages,
use_scm_version=True,
author="Mathieu Schaer",
author_email="[email protected]",
maintainer="Daniele Nerini",
maintainer_email="[email protected]",
description="A library to compute DEM-based topographical descriptors.",
long_description=open("README.md").read() + "\n\n" + open("HISTORY.rst").read(),
long_description_content_type="text/markdown",
url="https://github.com/MeteoSwiss/topo-descriptors",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent",
],
license="BSD-3-Clause license",
keywords="topo_descriptors",
entry_points={},
py_modules=["topo-descriptors"],
include_package_data=True,
install_requires=requirements,
package_dir=package_dir,
package_data=package_data,
setup_requires=setup_requirements,
tests_require=test_requirements,
extras_require=extras,
)