-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (43 loc) · 1.25 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
from setuptools import setup, find_packages
setup(
name="MyMessenger",
version='0.3.3',
description="Study project of chat based on JSON IM protocol",
long_description="Study project of chat based on JSON IM protocol with python3 and PyQt5",
author="Ramil Minnigaliev",
author_email="minnigaliev-r@yandex.ru",
url="https://github.com/thunderamur/my_messenger",
license='MIT',
keywords=['chat PyQt 5', 'jim chat'],
packages=find_packages('src'),
package_dir={
'my_messenger': 'src/my_messenger',
},
python_requires='>=3.5',
install_requires=[
"pillow>=5.0",
"PyQt5>=5.9",
"SQLAlchemy>=1.1",
"pymongo>=3.6"
],
extras_require={
'test': ["pytest>=3.2",
"pytest-cov>=2.5",
"pytest-sugar>=0.9",],
},
package_data={
'my_messenger': [
'client/gui/img/icon/*',
'client/gui/img/smile/*',
],
},
entry_points={
'gui_scripts': [
'mm-client-qt5 = my_messenger.client.client_gui:main',
],
'console_scripts': [
'mm-client = my_messenger.client.client_console:main',
'mm-server = my_messenger.server.server:main',
]
},
)