-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (42 loc) · 1.47 KB
/
setup.py
File metadata and controls
47 lines (42 loc) · 1.47 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
import re
from io import open
from setuptools import find_packages, setup
# Get the long description from the relevant file
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
with open('cogconverter/VERSION') as version_file:
__version__=version_file.read().strip()
setup(name='cogconverter',
version=__version__,
description="Utility to convert raster dataset to Cloud Optimized GeoTIFFs",
long_description=long_description,
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Utilities',
],
keywords='GIS, Cloud, GDAL',
author="Manish Sahu",
author_email='manish.sahu.civ13@iitbhu.ac.in',
url='https://github.com/ManishSahu53/cogconverter.git',
license='GPLv3+',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=open('requirements.txt').read().splitlines(),
extras_require={
'dev': [
'numpy',
'argparse',
'tqdm'
],
},
# entry_points="""
# [console_scripts]
# sentinelsat=sentinelsat.scripts.cli:cli
# """
)
# MD to RST
# pandoc --from=markdown --to=rst --output=README.rst README.md