-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (42 loc) · 1.01 KB
/
setup.py
File metadata and controls
43 lines (42 loc) · 1.01 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
from setuptools import setup, find_packages
setup(
name="gost",
use_scm_version=True,
setup_requires=["setuptools_scm"],
url="https://github.com/sixy6e/gost",
author="Josh Sixsmith",
description="Intercomparison workflow for DEA's ARD.",
keywords=[
"logging",
"structured",
"structure",
"log",
"MPI",
"mpi4py",
],
packages=find_packages(),
install_requires=[
"mpi4py",
"click",
"structlog",
"datacube",
"mpi-structlog",
],
dependency_links=[
"git+https://github.com/sixy6e/mpi-structlog@develop#egg=mpi_structlog",
],
package_data={
"gost": [
"data/*.zst",
"latex_templates/figures/*.txt",
"latex_templates/sections/*.txt",
"latex_templates/tables/*.txt",
],
},
license="MIT",
zip_safe=False,
entry_points="""
[console_scripts]
ard-intercomparison=gost.ui.cli:entry_point
""",
)