-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
33 lines (31 loc) · 1.01 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
from pathlib import Path
from setuptools import find_packages
from setuptools import setup
setup(
name="telminal",
version="1.0.1",
description="A Terminal in Telegram",
long_description=Path("README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
url="https://github.com/fristhon/telminal",
author="Mohammadreza Jafari",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
setup_requires=["wheel"],
install_requires=["pexpect>=4.8.0,<5", "Telethon>=1.23.0,<2", "pyppeteer>=0.2.6<1"],
python_requires=">=3.7",
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"telminal = telminal.main:main",
],
},
)