-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 985 Bytes
/
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
from os.path import dirname, join
from setuptools import setup
from lan_presenter import __version__
with open(join(dirname(__file__), 'README.md')) as readme_file:
long_description = readme_file.read()
setup(
name='lan-presenter',
version=__version__,
description='Presenter remote control over local network connection',
long_description=long_description,
long_description_content_type='text/markdown',
author='Tibor Hári',
author_email='[email protected]',
url='https://github.com/tiborhari/lan-presenter/',
packages=['lan_presenter'],
package_data={'lan_presenter': ['index.html']},
entry_points={
'console_scripts': [
'lan_presenter=lan_presenter.__main__:main',
],
},
python_requires='>=3.6, <4',
install_requires=[
'aiohttp~=3.8.1',
'keyboard~=0.13.5',
'qrcode~=7.3.1'
],
extras_require={
'dev': [
'flake8==3.7.9',
]
},
)