-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 1.05 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
from setuptools import setup, find_packages
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Education',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
]
setup(
name='localchat',
version='1.0.1',
description='Group Chat on a Local Area Network',
long_description=open('README.txt').read() + '\n',
long_description_content_type="text/markdown",
url='https://github.com/DeepakJha01/localchat',
author='Deepak Jha',
author_email='deepakjha18598@gmail.com',
license='MIT',
classifiers=classifiers,
keywords=['chat','chatapp','group-chat','localchat','socket','server','client','lan'],
packages=find_packages(),
install_requires=[''],
python_requires='>=3.6'
)