-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
34 lines (31 loc) · 1.01 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
"""Package setup."""
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="bdd100k-models-sem_seg", # Replace with your own username
version="1.0.0",
author="Fisher Yu",
author_email="i@yf.io",
description="BDD100K Models",
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/SysCV/bdd100k-models",
"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=[
"bdd100k @ git+git://github.com/bdd100k/bdd100k.git",
"mmcv-full",
"mmsegmentation",
],
)