-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 692 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 692 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
# setup.py
from setuptools import setup, find_packages
setup(
name='chat_app',
version='1.0.0',
packages=find_packages(),
install_requires=[
'Flask',
'Flask-SocketIO',
'redis',
'cryptography',
'authlib',
'eventlet',
],
entry_points={
'console_scripts': [
'chat_app=main:main',
],
},
author='Your Name',
author_email='youremail@example.com',
description='A secure, real-time chat application with E2EE',
url='https://github.com/yourusername/chat_app',
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
)