-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (38 loc) · 1.32 KB
/
setup.py
File metadata and controls
47 lines (38 loc) · 1.32 KB
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
43
44
45
46
47
#!/usr/bin/env python3
from setuptools import setup, find_packages
from telegram_interface_cli import NAME
from telegram_interface_cli import VERSION
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name=NAME.replace('_','-'),
version=VERSION,
description='A quick tool for listing the Telegram Messenger groups that a user is within.',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Environment :: Console',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: BSD License',
],
keywords=[
'telegram',
'telegram-group',
],
author='Nicholas de Jong',
author_email='contact@nicholasdejong.com',
url='https://github.com/ndejong/telegram-interface',
license='BSD 2-Clause',
packages=find_packages(),
zip_safe=False,
scripts=['bin/telegram-interface'],
python_requires='>=3.6, <4',
install_requires=['argparse', 'telethon'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)