-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 2.04 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 2.04 KB
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
import pathlib
import setuptools
readme_filepath = pathlib.Path(__file__).parent / 'README.md'
setuptools.setup(name='cvsutils',
version='0.1.11',
description="Unofficial utility scripts for Microsoft Custom Vision Service",
long_description=readme_filepath.read_text(),
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
license='MIT',
install_requires=['tqdm', 'Pillow', 'requests', 'tenacity'],
url='https://github.com/shonohs/cvsutils',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'
],
entry_points={
'console_scripts': [
'cvs_add_images=cvsutils.commands.add_images:main',
'cvs_create_project=cvsutils.commands.create_project:main',
'cvs_download_predictions=cvsutils.commands.download_predictions:main',
'cvs_download_project=cvsutils.commands.download_project:main',
'cvs_evaluate_project=cvsutils.commands.evaluate_project:main',
'cvs_export_model=cvsutils.commands.export_model:main',
'cvs_get_domains=cvsutils.commands.get_domains:main',
'cvs_list_projects=cvsutils.commands.list_projects:main',
'cvs_predict_dataset=cvsutils.commands.predict_dataset:main',
'cvs_predict_image=cvsutils.commands.predict_image:main',
'cvs_show_project=cvsutils.commands.show_project:main',
'cvs_remove_iteration=cvsutils.commands.remove_iteration:main',
'cvs_train_project=cvsutils.commands.train_project:main',
'cvs_validate_dataset=cvsutils.commands.validate_dataset_file:main'
]
})