Last change
on this file since 1502 was 1480, checked in by wouter, 3 days ago |
#440 update uri to 1477. Add websocket-client 1.0.1 also as depenedency. remove egg.info
|
File size:
604 bytes
|
Rev | Line | |
---|
[1473] | 1 | from setuptools import setup, find_packages
|
---|
| 2 |
|
---|
| 3 | setup(
|
---|
[1474] | 4 | name='websocket',
|
---|
| 5 | version='1.0.0',
|
---|
| 6 | description='websocket java-style',
|
---|
[1473] | 7 | url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/',
|
---|
| 8 | author='W.Pasman',
|
---|
| 9 | #packages={'src':'*'},
|
---|
| 10 | packages = find_packages(exclude=["test", "test.*"]),
|
---|
[1474] | 11 | package_data = { 'websocket': ['py.typed'] },
|
---|
[1473] | 12 | install_requires=[
|
---|
[1480] | 13 | "websocket-client==1.0.1",
|
---|
| 14 | "uri@https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/1477/uri/dist/uri-2.0.1.tar.gz"
|
---|
| 15 |
|
---|
[1473] | 16 | ],
|
---|
| 17 | classifiers=[
|
---|
| 18 | 'Programming Language :: Python :: 3'
|
---|
| 19 | ]
|
---|
| 20 | ) |
---|
Note:
See
TracBrowser
for help on using the repository browser.