forked from jfilter/split-folders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (21 loc) · 853 Bytes
/
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
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='split_folders',
version='0.2.0',
description='🗂 Split folders with files (e.g. images) into training, validation and test (dataset) folders.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/jfilter/split-folders',
author='Johannes Filter',
author_email='[email protected]',
license='MIT',
packages=['split_folders'],
classifiers=classifiers,
scripts=['bin/split_folders'])