Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
dbolya
GitHub Repository: dbolya/tide
Path: blob/master/setup.py
90 views
1
import pathlib
2
from setuptools import setup
3
4
# The directory containing this file
5
HERE = pathlib.Path(__file__).parent
6
7
# The text of the README file
8
README = (HERE / "README.md").read_text(encoding='utf8')
9
10
# This call to setup() does all the work
11
setup(
12
name="tidecv",
13
version="1.0.1",
14
description="A General Toolbox for Identifying ObjectDetection Errors",
15
long_description=README,
16
long_description_content_type="text/markdown",
17
url="https://github.com/dbolya/tide",
18
author="Daniel Bolya",
19
author_email="[email protected]",
20
license="MIT",
21
classifiers=[
22
"License :: OSI Approved :: MIT License",
23
"Programming Language :: Python :: 3",
24
"Programming Language :: Python :: 3.6",
25
"Operating System :: OS Independent"
26
],
27
python_requires='>=3.6',
28
packages=["tidecv", "tidecv.errors"],
29
include_package_data=True,
30
install_requires=["appdirs", "numpy", "pycocotools", "opencv-python", "seaborn", "pandas", "matplotlib"],
31
# entry_points={
32
# "console_scripts": [
33
# "tidecv=tidecv.__main__:main",
34
# ]
35
# },
36
)
37
38