aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 85721e8249231970ed6691272cee5d421368d57c (plain)
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
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 <http://pjreddie.com/darknet/yolo/>.',
    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',
        ],
    },
)