-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 799 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
classifiers = [
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
'Topic :: Utilities']
setup(name='annotated_images',
version='0.1.5',
description='Split training data images into training, validation and test (dataset) folders.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/saberd/annotated-images',
author='saberd',
author_email='mail@saberd.com',
license='MIT',
packages=['annotated_images'],
classifiers=classifiers)