-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
36 lines (30 loc) · 1.02 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt") as fh:
requirements = fh.read().splitlines()
setuptools.setup(
name="smart_tv_telegram",
version="1.3.9.dev0",
setup_requires=["wheel"],
author="andrew-ld",
author_email="[email protected]",
description="A Telegram Bot to stream content on your smart TV",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/andrew-ld/smart-tv-telegram",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
],
install_requires=requirements,
python_requires=">=3.6",
entry_points={
"console_scripts": [
"smart_tv_telegram=smart_tv_telegram.__main__:entry_point",
],
},
include_package_data=True
)