-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 860 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
27
28
29
30
import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='lil_histie',
version='0.0.1',
packages=find_packages(),
author="Alex Kovac",
author_email="[email protected]",
description="Simple CLI to display histograms from piped gdalinfo output.",
long_description=long_description,
url="https://github.com/kovaca/lil-histie",
include_package_data=True,
install_requires=[
'Click',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
entry_points='''
[console_scripts]
lil_histie=lil_histie.histogram:cli
''',
)