-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.25 KB
/
setup.py
File metadata and controls
36 lines (32 loc) · 1.25 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
from setuptools import setup
import sys, os.path, shutil
with open("README.md", "r") as ld:
longdesc = ld.read()
if sys.version_info.major < 3:
sys.stderr.write("pysimpqr requires Python 3.2+ ")
sys.exit(1)
setup(name='PygroupBot',
packages=['pygroupbot'],
version="1.2.4",
description='pygroupbot is python library that can you help to create your own simple telegram group manage bot',
author='PixCap TM',
url='https://github.com/ranujasanmir/pygroupbot',
keywords=['telegram', 'bot'],
license='MIT',
classifiers = [
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Natural Language :: English',
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.5',
],
install_requires = "pytelegrambotapi",
long_description = longdesc,
long_description_content_type = "text/markdown",
)