aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 35bd306e7fa020c0d869fda27266e7a6ead94a1c (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
#!/usr/bin/env python3
from setuptools import setup

setup(
    name='lidt-sample-database',
    version='0.1',
    description="LIDT sample database",
    author="Cynerd",
    author_email="cynerd@email.cz",
    license="GPLv3",

    classifiers=[
        'Development Status :: 3 - Alpha',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.3',
        'Programming Language :: Python :: 3.4',
        'Programming Language :: Python :: 3.5',
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
        ],

    packages=['lidt-sample-database'],
    entry_points={
        'console_scripts': [
            'lidt-sample-database=lidt-sample-database:main'
            ]
        }
    )