-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.02 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
# -*- coding: utf-8 -*-
import setuptools
with open("README.md", "r") as f:
readme = f.read()
setuptools.setup(
name="wildfires",
author="Alexander Kuhn-Regnier",
author_email="[email protected]",
description="Utilities for the analysis of wildfire data.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/akuhnregnier/wildfires",
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points="""
[console_scripts]
valid-ports=wildfires.ports:main
general-lab=wildfires.dask_cx1.dask_utils:main
mosaic-modis-tiles=wildfires.data.mosaic_modis_tiles:main
""",
python_requires=">=3.7",
setup_requires=["setuptools-scm"],
use_scm_version=dict(write_to="src/wildfires/_version.py"),
include_package_data=True,
)