-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (27 loc) · 858 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
from setuptools import setup, find_packages
DISTNAME = 'multiearth-challenge'
DESCRIPTION = 'This repository provides tools for working with imagery supplied by the MultiEarth 2023 public challenge.'
LICENSE = 'MIT'
AUTHOR = 'Greg Angelides'
URL = 'https://github.com/MIT-AI-Accelerator/multiearth-challenge'
INSTALL_REQUIRES = [
'jupyter >= 1.0',
'matplotlib >= 3.5',
'netcdf4 >= 1.5',
'numba >= 0.54',
'numpy >= 1.18',
'xarray >= 0.20',
]
if __name__ == '__main__':
setup(name=DISTNAME,
description=DESCRIPTION,
license=LICENSE,
author=AUTHOR,
install_requires=INSTALL_REQUIRES,
url=URL,
python_requires='>=3.8',
packages=find_packages(where='./src'),
package_dir={'': 'src'},
include_package_data=True,
version='1.0.0',
)