-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.17 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
from setuptools import setup, find_packages
setup(
name="Finger balabolka Server",
version='1.0.19',
description="A alfa project of flood chat.",
long_description="A flood chat project on ptyhon 3 and PyQt5",
author="Artem Sukharenko",
author_email="truecyxapic@yandex.ru",
url="https://github.com/Cyxapic/fb_server",
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'Topic :: Communications :: Chat',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords=['Flood chat server', 'chat PyQt 5', 'server jim chat'],
package_dir={'': 'src'},
packages=find_packages('src'),
install_requires=[
"SQLAlchemy==1.1.14",
],
extras_require={
'dev': ['flake8==3.4.1',],
'test': ["pytest==3.2.2",
"pytest-cov==2.5.1",
"pytest-sugar==0.9.0",
"PyYAML==3.12",],
},
entry_points={
'console_scripts': [
'finger_server=fb_server.main:main',
],
},
)