-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.27 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
41
42
import os
from setuptools import setup
README_PATH = os.path.join(os.path.dirname(__file__), 'README.md')
with open(README_PATH) as f:
README_DATA = f.read()
# This call to setup() does all the work
setup(
name = 'yarc-server',
version = '0.1.1',
description = 'Yet Another Remote Control',
long_description = README_DATA,
long_description_content_type = 'text/markdown',
url = 'https://github.com/return007/yarc',
author = 'return007',
author_email = 'glalchandanig@gmail.com',
packages = ['yarc'],
include_package_data = True,
python_requires = '>=3.6',
license = 'MIT',
classifiers = [
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Programming Language :: Python :: 3',
],
install_requires = [
'pyautogui',
'flask',
'qrcode',
'asyncio',
'websockets'
],
entry_points = {
'console_scripts': [
'yarc=yarc.launch:main',
]
},
)