-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 807 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
# setup.py
from setuptools import setup, find_packages
setup(
name="gethurricaneloss",
version="0.1",
packages=find_packages(),
url="https://github.com/ncerutti/gethurricaneloss",
install_requires=[
"numba==0.58.0",
"numpy==1.25.0",
"pytest==7.4.2",
"tqdm==4.66.3",
],
entry_points={
"console_scripts": [
"gethurricaneloss_base = src.gethurricaneloss_base:main",
"gethurricaneloss_jit = src.gethurricaneloss_jit:main",
"gethurricaneloss_mp = src.gethurricaneloss_mp:main",
"gethurricaneloss_mp_para = src.gethurricaneloss_mp_para:main",
"gethurricaneloss_two = src.gethurricaneloss_two:main",
"gethurricaneloss = src.gethurricaneloss_two:main",
],
},
)