-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·41 lines (27 loc) · 958 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
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as rq:
requirements = rq.readlines()
setup(
# Library name
name="HoverFast",
version="1.0.0",
author="Julien Massonnet, Medya Tekes and Petros Liakopoulos",
author_email="[email protected]",
description="Blazing fast nuclei segmentation for H&E WSIs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/petroslk/HoverFast",
install_requires=requirements,
packages=find_packages(),
include_package_data=True,
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
],
entry_points={
"console_scripts": ["HoverFast=hoverfast.main:main"],
}
)