-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1002 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
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="cordmap",
version="0.0.1",
packages=find_packages(),
url="",
license="",
author="J. Marcus Hughes",
author_email="[email protected]",
description="code to train CORD map product",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
install_requires=[
"goes-solar-retriever",
"numpy",
"pandas",
"torch",
"torchvision",
"astropy",
"sunpy",
"opencv-python",
"matplotlib",
"humanfriendly",
"dask",
"tqdm",
"datasets",
"monai",
"transformers",
"zarr"
],
extras_require={
"test": ["pytest", "coverage", 'pytest-runner'],
"docs": ["jupyter-book"],
},
)