forked from ysora/stripenn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 957 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
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name = 'stripenn',
version = '1.1.47',
author = 'Sora Yoon',
author_email = '[email protected]',
description = "Image-processing based detection of architectural stripes from chromatic conformation data",
long_description=README,
long_description_content_type="text/markdown",
url = 'https://github.com/ysora/stripenn',
#package_dir={'': 'src'},
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=["cooler","pandas","numpy","matplotlib","opencv-python","scikit-image","scipy","joblib","tqdm",'typer','pathlib'],
entry_points={
"console_scripts": ["stripenn=src.cli:main"]
},
)