summaryrefslogtreecommitdiffstats
path: root/contacts_validation/setup.py
blob: 383d6cdf93c553132e3a3c23eb818cf3cabc41cf (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python3
# Copyright 2018 vg@devys.org
# SPDX-License-Identifier: MIT

from setuptools import setup

def readme():
    with open('README.rst') as f:
        return f.read()

setup(
        name='contacts_validation',
        version='0.1',
        description='Validate contact database in yaml format',
        #long_description=readme(),
        # description at https://pypi.org/pypi?%3Aaction=list_classifiers
        classifiers=[
            'Development Status :: 3 - Alpha',
            'License :: OSI Approved :: MIT License',
            'Programming Language :: Python :: 3.6',
            'Environment :: Console',
            'Intended Audience :: End Users/Desktop',
            'Natural Language :: English',
            'Operating System :: POSIX',
            'Topic :: Utilities',
        ],
        keywords='contacts contact validation schema',
        url='https://git.devys.org/contacts_validation',
        author='vg',
        author_email='vg+dev@devys.org',
        license='MIT',
        packages=['contacts_validation'], # module packages
        install_requires=[
            'docopt',
            'pyyaml',
            'jsonschema',
        ],
        include_package_data=True,
        zip_safe=False,
        #scripts=['./jsonschema_yaml.py'],
        entry_points = {
            'console_scripts':
                ['contacts-validation=contacts_validation.command_line:main'],
        },
        #test_suite='pytest',
        #tests_require=['pytest'],
)