This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
58 lines (55 loc) · 1.61 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#
# GitHub: JackieZhai @ MiRA, CASIA, Beijing, China
# See Corresponding LICENSE, All Right Reserved.
#
# setup pypi package based on
# pysot, pytracking, sots, stack and lighttrack.
# See Corresponding CONTRIBUTING, Please contact if any conflicts.
#
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="SiamBOMB",
version="0.0.5",
author="JackieZhai",
author_email="[email protected]",
description="SiamBOMB: Siamese network using Background information for real-time Online Multi-species home-cage animal Behavioral analysis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/JackieZhai/SiamBOMB",
project_urls={
"Bug Tracker": "https://github.com/JackieZhai/SiamBOMB/issues",
"Request Tracker": "https://github.com/JackieZhai/SiamBOMB/pulls",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "."},
packages=setuptools.find_packages(),
python_requires=">=3.6",
package_data={
"": ["*.json", "*.qss", "*.yaml"]
},
install_requires=[
"numpy",
"opencv-python",
"pyyaml",
"yacs",
"tqdm",
"colorama",
"matplotlib",
"cython",
"tensorboardX",
"imutils",
"pandas",
"scikit-image",
"visdom",
"tb-nightly",
"tikzplotlib",
"gdown",
"timm"
]
)