From 25469d39577aaa4e06a4b48ff7cdb5c2b4821b3c Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Sun, 5 Feb 2017 16:33:00 +0300 Subject: Initial version 0.1.0 --- setup.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..85721e8 --- /dev/null +++ b/setup.py @@ -0,0 +1,33 @@ +from setuptools import setup, find_packages + +setup( + name = 'YOSO', + version = '0.1.0', + description = 'You Only Show Once', + long_description = 'A GUI tool to create training data for YOLO network by Darknet. See .', + author = 'Igor Pashev', + author_email = 'pashev.igor@gmail.com', + license = 'WTFPL', + data_files = [('', [ 'LICENSE' ])], + + classifiers = [ + 'Development Status :: 3 - Alpha', + 'Environment :: X11 Applications :: Qt', + 'Intended Audience :: Science/Research', + 'License :: Public Domain', + 'Programming Language :: Python :: 3.5', + 'Topic :: Multimedia :: Graphics :: Viewers', + 'Topic :: Scientific/Engineering :: Visualization', + 'Topic :: Utilities', + ], + + packages = find_packages(), + + install_requires = [ 'PyQt5' ], + + entry_points = { + 'console_scripts': [ + 'yoso=YOSO:main', + ], + }, +) -- cgit v1.2.3