-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (34 loc) · 1.04 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
#!/usr/bin/env python3
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='tgsend',
version="0.3.2",
description='Send messages to Telegram chats from Python and the command line',
long_description=long_description,
long_description_content_type="text/markdown",
author='alxnull',
author_email="[email protected]",
license="BSD-3-Clause",
url="https://github.com/alxnull/tgsend",
py_modules=['tgsend'],
entry_points={
'console_scripts': ['tgsend = tgsend:main']
},
install_requires=[
'requests'
],
classifiers=(
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Operating System :: POSIX",
"Topic :: Communications :: Chat",
"Topic :: Utilities"
),
keywords="telegram message"
)