-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
32 lines (30 loc) · 1.06 KB
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="interactive-kit",
version="0.1.5",
author="Alejandro Noguerón",
author_email="alex.noguerona@gmail.com",
description="Interactive viewer for signal processing, image processing, and machine learning",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/Biomedical-Imaging-Group/interactive-kit',
classifiers=[
"Operating System :: OS Independent",
'Development Status :: 5 - Production/Stable', # Chose forom "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
'Programming Language :: Python :: 3.7',
"License :: OSI Approved :: MIT License",
],
package_dir={"": "src"},
install_requires=[
'numpy',
'matplotlib',
'jupyter',
'ipympl',
'ipywidgets',
'opencv-python'
],
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
)