forked from monocongo/openimages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 1.32 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
import os
from setuptools import setup, find_packages
parent_dir = os.path.dirname(os.path.realpath(__file__))
with open(f"{parent_dir}/README.md", "r") as readme_file:
long_description = readme_file.read()
setup(
name="openimages",
version="0.0.1",
author="James Adams",
author_email="[email protected]",
description="Tools for downloading computer vision datasets from Google's OpenImages dataset",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/monocongo/openimages",
python_requires=">=3.6",
provides=[
"openimages",
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
package_dir={'': 'src'},
packages=find_packages(where='src'),
install_requires=[
"boto3",
"cvdata",
"lxml",
"pandas",
"requests",
"tqdm",
],
entry_points={
"console_scripts": [
"oi_download_dataset=openimages.download:_entrypoint_download_dataset",
"oi_download_images=openimages.download:_entrypoint_download_images",
]
},
)