-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 980 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 980 Bytes
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
#!/usr/bin/env python
"""
Automated Recognition and Classification of Histological layers.
Machine learning for histological annotation and quantification of cortical layers pipeline
"""
import importlib
from setuptools import find_packages, setup
spec = importlib.util.spec_from_file_location("layer_recognition.version", "layer_recognition/version.py")
module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(module)
VERSION = module.VERSION
with open("requirements.txt") as f:
requirements = f.readlines()
setup(
classifiers=[
"Programming Language :: Python :: 3.11",
],
description="Machine learning for histological annotation and quantification of cortical layers pipeline",
author="Blue Brain Project, EPFL",
version=VERSION,
install_requires=requirements,
packages=find_packages(),
name="layer-recognition",
entry_points={"console_scripts": ["pylayer_recognition=layer_recognition.app.__main__:app"]},
)