forked from iceye-ltd/icecube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·73 lines (65 loc) · 1.52 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
import os
from setuptools import setup, find_packages
def read(fname):
"""
# Utility function to read the README file for long descriptions.
:param fname:
:return:
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
requirements = [
"numpy",
"rasterio",
"h5py",
"xmltodict",
"tqdm",
"pip",
"scikit-image",
"opencv-python",
"shapely",
"pandas",
"xarray",
"dask",
"netCDF4",
"bottleneck",
]
dev_requirements = [
"invoke",
"pre-commit",
"black",
"flake8",
"black",
"bump2version",
"pytest",
"mkdocs>=1.1.2",
"mkdocs-material>=7.1.4",
"mkdocs-jupyter>=0.17.3",
"mknotebooks>=0.6.2",
"mkdocstrings>=0.3.2",
]
ml_requirements = [
"xbatcher",
"torch",
"torchvision",
]
setup(
name="icecube",
version="1.1.1",
author="Muhammad Irfan Ali, Arnaud Dupeyrat",
author_email="[email protected], [email protected]",
description="AI oriented datacube generation using ICEYE data",
license="MIT License",
keywords="data cubes, ML cubes, iceye cubes",
packages=find_packages(),
install_requires=requirements,
extras_require={"dev": dev_requirements, "ml": ml_requirements},
long_description=read("Readme.md"),
project_urls={
"Bug Tracker": "",
"Documentation": "",
"Source Code": "https://github.com/iceye-ltd/icecube",
},
entry_points={
'console_scripts': ['icecube = icecube.bin.generate_cube:cli'],
},
)