File: setup.py

package info (click to toggle)
pypjlink2 1.2.2-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 172 kB
  • sloc: python: 571; makefile: 7; sh: 5
file content (40 lines) | stat: -rwxr-xr-x 1,186 bytes parent folder | download
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import find_packages, setup

from pypjlink import version

with open('README.md', 'r') as fh:
    long_description = fh.read()

print(long_description)
setup(
    name='pypjlink2',
    version=version,
    author=('Peter Ward <peteraward@gmail.com>, '
            'Gaetano Guerriero <gaetano.guerriero@spacespa.it>, '
            'Benoit Louy <pypjlink@mm.st>'),
    author_email='pypjlink@mm.st',
    url='https://github.com/benoitlouy/pypjlink',
    description='PJLink is a standard for controlling data projectors.',
    long_description=long_description,
    long_description_content_type='text/markdown',
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Environment :: Console',
        'License :: OSI Approved :: Apache Software License',
        'Natural Language :: English',
        'Topic :: Multimedia :: Video :: Display',
        'Topic :: Utilities',
    ],

    install_requires=['appdirs'],
    packages=find_packages(exclude=['tests']),
    entry_points={
        'console_scripts': [
            'pjlink = pypjlink.cli:main',
        ],
    },
    test_suite='tests',
)