-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
26 lines (23 loc) · 896 Bytes
/
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
import re
import setuptools
with open("sentinelPot/__init__.py", encoding="utf-8") as f:
version = re.search(r"__version__\s*=\s*'(\S+)'", f.read()).group(1)
setuptools.setup(
name="sentinelPot",
version=version,
url="https://github.com/LLeiSong/sentinelPot",
author="Lei Song",
author_email="[email protected]",
description="Preprocess sentinel-1 and sentinel-2 imagery",
long_description=open('README.md').read(),
packages=setuptools.find_packages(),
keywords="copernicus, sentinel, esa, satellite, process",
install_requires=open("requirements.txt").read().splitlines(),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
include_package_data=True,
package_data={'': ['files/*', 's1_gather_tile.R', 's1_gather_tile_cli.R']},
)