-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (29 loc) · 953 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 setuptools
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
# change all this
setup(
name="klcms",
version="0.0",
description="KAZA Land Cover Monitoring System",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kyle-woodward/kaza-lc",
packages=setuptools.find_packages(),
author="Kyle Woodward",
author_email="kw.geospatial@gmail.com",
license="GNU GPL v3.0",
zip_safe=False,
include_package_data=True,
entry_points={
"console_scripts": [
"00sample_pts = src.00sample_pts:main",
"01composite_s2 = src.01composite_s2:main",
"02train_test = src.02train_test:main",
"03RFprimitives = src.03RFprimitives:main",
"04generate_LC = src.04generate_LC:main",
]
},
install_requires=["earthengine-api", "pandas"],
)