-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.py
56 lines (53 loc) · 1.38 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import sys
sys.path.append("./teelebot")
from setuptools import setup, find_packages, Extension
from distutils.core import setup, Extension
from version import(
__author__,
__email__,
__blog__,
__description__,
__version__
)
with open('README.md', "r", encoding="utf-8") as README_md:
README = README_md.read()
setup(
name='teelebot',
version=__version__,
description=__description__,
keywords=' '.join([
'teelebot',
'telegram bot',
'telegram bot api',
"telegram"
]),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
url=__blog__,
author=__author__,
author_email=__email__,
long_description=README,
long_description_content_type="text/markdown",
license='GPLv3',
packages=find_packages(exclude=['plugins', 'plugins.*', 'test', 'test.*']),
package_data={
'teelebot':['README.md'],
'teelebot':['LICENSE'],
'teelebot':[
'plugins/Chat/hello.ogg',
'plugins/Hello/helloworld.png',
'plugins/About/icon.png'
],
},
python_requires='>=3.6',
install_requires=['requests'],
entry_points={
'console_scripts': [
'teelebot=teelebot:main',
]
},
zip_safe=True
)