-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (22 loc) · 1 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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
setup(
name='deepdanbooru_onnx',
version='0.0.8',
description='anime image classification',
author='chinoll',
author_email='[email protected]',
url='https://github.com/chinoll/deepdanbooru_onnx',
packages=find_packages(),
keywords=['deepdanbooru', 'anime', 'image classification','onnx','deep learning'],
requires=['onnx', 'onnxruntime', 'tqdm', 'numpy', 'Pillow', 'requests', 'shutil', 'hashlib', 'os'],
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: OS Independent'],
long_description_content_type="text/markdown",
long_description=long_description,
install_requires=['onnx', 'onnxruntime', 'tqdm', 'numpy', 'pillow', 'requests'],
)