forked from rechner/pypjlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·40 lines (35 loc) · 1.17 KB
/
setup.py
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 pypjlink2 import version
with open('README.md', 'r') as fh:
long_description = fh.read()
print(long_description)
setup(
name='pypjlink2-rechner',
version=version,
author=('Peter Ward <[email protected]>, '
'Gaetano Guerriero <[email protected]>, '
'Benoit Louy <[email protected]>'),
author_email='[email protected]',
url='https://github.com/rechner/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': [
'pjlink2 = pypjlink2.cli:main',
],
},
test_suite='tests',
)