-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
30 lines (28 loc) · 1.15 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
import setuptools
setuptools.setup(
name='ddd-dataset',
version='0.1.2',
author='Chi Xie',
author_email='[email protected]',
description='Toolkit for Description Detection Dataset ($D^3$)',
long_description='Toolkit for Description Detection Dataset ($D^3$): A detection dataset with class names characterized by intricate and flexible expressions, for the Described Object Detection (DOD) task.',
long_description_content_type='text/markdown',
license='CC BY-NC 4.0',
packages=['d_cube'],
package_dir={"d_cube": "d_cube"},
url='https://github.com/shikras/d-cube',
project_urls={
"Bug Tracker": "https://github.com/shikras/d-cube/issues",
},
install_requires=['numpy', 'pycocotools', 'opencv-python', 'matplotlib'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
],
)