forked from ekvall93/ELD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 779 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
# Read the contents of your requirements.txt file
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name="ELD",
version="0.0.1",
description="Spatial landmark detection for tissue images and registration",
author="Markus Ekvall",
author_email="[email protected]",
packages=find_packages(),
install_requires=required, # Use the list read from the requirements.txt file
extras_require={
"doc": [
"sphinx~=4.2.0",
"myst-parser",
"furo",
"nbsphinx"
]
},
entry_points={
'console_scripts': [
'eld-train=ELD.train:main', # "eld-train" is the command to call your script
],
}
)