-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (23 loc) · 867 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
install_deps = ['cellpose',
'streamlit~=1.3.1', # TODO: Find a replacement for the REPORT_CONTEXT_ATTR_NAME function missing in recent versions
'pyyaml',
'protobuf~=3.19.0',
'imagecodecs']
setuptools.setup(
name="traincellposeserver",
author="Alberto Bailoni",
author_email="alberto.bailoni@embl.de",
description="Daemon tool to train cellpose models on a server with CUDA support",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.1.0",
packages=setuptools.find_packages(),
install_requires=install_deps,
entry_points={
'console_scripts': [
'traincellposeserver = traincellposeserver.__main__:main']
}
)