-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_client_wh.py
More file actions
34 lines (28 loc) · 1.11 KB
/
setup_client_wh.py
File metadata and controls
34 lines (28 loc) · 1.11 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
# ====================== Распространение приложений ===========================
# ---------------------------- Создание пакета --------------------------------
# --------------------- Использование setuptools -------------------------
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
# allow setup_server_wh.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='Messager client',
version='1.0',
packages=find_packages(),
include_package_data=True,
license='GNU General Public License v3.0',
description='My messenger',
long_description=README,
url='https://github.com/dmitricus/python-message-lessons',
author='DanteOnline',
author_email='dmitricus@ya.ru',
classifiers = [],
install_requires=['pycryptodome', 'pycryptodomex'],
entry_points={
'console_scripts': [
'messenger = messenger.client.src.graphic_chat:main',
]
},
)