forked from mohamadmansourX/Merge_COCO_FILES
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 832 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (21 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import os
import setuptools
with open(os.path.join(os.path.dirname(__file__), "README.md")) as readme:
README = readme.read()
setuptools.setup(
name="COCO_merger",
version="0.0.1",
author="Mohamad Mansour & Tristan Cotte",
author_email="moemansour03@gmail.com",
description="Python package which aims to merge 2 COCO .json files",
long_description="This package is intended for data scientist who wants to merge several COCO datasets before "
"training a new model",
long_description_content_type="text/markdown",
url="https://github.com/mohamadmansourX/Merge_COCO_FILES",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)