-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 830 Bytes
/
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
import setuptools
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
]
setuptools.setup(
name='messaging_server',
version='0.1',
description='Messaging server using WebSockets',
url='https://github.com/JordanP',
author='Jordan Pittier',
author_email='[email protected]',
license='Apache 2.0',
packages=['messaging_server'],
classifiers=classifiers,
entry_points={
'console_scripts': [
'messaging_server = messaging_server.main:main',
],
}
)