forked from bdd100k/bdd100k
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (53 loc) · 1.46 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
"""Package setup."""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="bdd100k", # Replace with your own username
version="1.0.0",
author="Fisher Yu",
author_email="[email protected]",
description="BDD100K Dataset Toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://www.bdd100k.com/",
project_urls={
"Documentation": "https://doc.bdd100k.com/",
"Source": "https://github.com/bdd100k/bdd100k",
"Tracker": "https://github.com/bdd100k/bdd100k/issues",
},
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=[
"gmplot",
"joblib",
"matplotlib",
"motmetrics",
"numpy",
"pandas",
"pillow",
"pycocotools",
"scalabel @ git+git://github.com/scalabel/scalabel.git",
"scikit-image",
"toml",
"tqdm",
"tabulate",
"tqdm",
],
package_data={
"bdd100k": [
"configs/det.toml",
"configs/ins_seg.toml",
"configs/sem_seg.toml",
"configs/box_track.toml",
"configs/seg_track.toml",
"py.typed",
]
},
include_package_data=True,
)