-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (29 loc) · 920 Bytes
/
setup.py
File metadata and controls
36 lines (29 loc) · 920 Bytes
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 io import open
from setuptools import setup, find_packages
from os.path import join, dirname
from faqtelegrambot import __version__
with open('README.rst', 'rt', encoding='utf8') as f:
readme = f.read()
with open('requirements.txt', encoding='utf-8') as f:
requirements = f.read()
setup(
# metadata
name='faqtelegrambot',
version=__version__,
url='https://github.com/lonsofore/faqtelegrambot/',
author='Lonsofore',
author_email='lonsofore@yandex.ru',
license='Apache 2.0',
description='Frequently asked questions Telegram bot.',
long_description=readme,
keywords='telegram faq bot',
# options
packages=find_packages(),
install_requires=requirements,
include_package_data=True,
entry_points={
'console_scripts': [
'faqtelegrambot = faqtelegrambot.start:start',
],
},
)