forked from localdevices/pyorc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
68 lines (64 loc) · 2 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open("README.md") as readme_file:
readme = readme_file.read()
setup(
name="pyopenrivercam",
description="pyopenrivercam (pyorc) is a front and backend to control river camera observation locations",
version="0.2.1",
long_description=readme + "\n\n",
long_description_content_type="text/markdown",
url="https://github.com/localdevices/pyorc",
author="Hessel Winsemius",
author_email="[email protected]",
packages=find_packages(),
package_dir={"pyorc": "pyorc"},
test_suite="tests",
python_requires=">=3.8",
install_requires=[
"cython; platform_machine == 'armv7l'",
"dask",
"descartes",
"geojson",
"matplotlib",
"netCDF4",
"numpy",
"opencv-python",
"openpiv",
"packaging; platform_machine == 'armv7l'",
"pip",
"pyproj",
"pythran; platform_machine == 'armv7l'",
"rasterio",
"scikit-image",
"scipy",
"shapely",
"tqdm",
"xarray",
],
extras_require={
"dev": ["pytest", "pytest-cov"],
"optional": [],
},
# entry_points="""
# """,
include_package_data=True,
license="GPLv3",
zip_safe=False,
classifiers=[
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Scientific/Engineering :: Image Processing",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="hydrology, hydrometry, river-flow, pyorc",
)