source: websocketpy/setup.py@ 1478

Last change on this file since 1478 was 1474, checked in by wouter, 6 days ago

#440 first try new websocketpy

File size: 466 bytes
Line 
1from setuptools import setup, find_packages
2
3setup(
4 name='websocket',
5 version='1.0.0',
6 description='websocket java-style',
7 url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/',
8 author='W.Pasman',
9 #packages={'src':'*'},
10 packages = find_packages(exclude=["test", "test.*"]),
11 package_data = { 'websocket': ['py.typed'] },
12 install_requires=[
13 ],
14 classifiers=[
15 'Programming Language :: Python :: 3'
16 ]
17)
Note: See TracBrowser for help on using the repository browser.