-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 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
31
32
33
34
35
from setuptools import setup, find_packages
from pathlib import Path
VERSION = '1.0.2'
DESCRIPTION = 'Image data split package for machine learning'
this_directory = Path(__file__).parent
LONG_DESCRIPTION = (this_directory / "README.md").read_text()
# Setting up
setup(
name="image-data-split",
version=VERSION,
author="Shouke Wei",
author_email="[email protected]",
license='MIT License',
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
url = 'https://github.com/shoukewei/image_split',
project_url = 'https://github.com/shoukewei/image_split',
Documentation = 'https://github.com/shoukewei/image_split/blob/main/docs/example.ipynb',
packages=find_packages(),
keywords=['python', 'image data', 'split', 'train', 'validation','test', 'machine learning'],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)