Last change
on this file since 80 was 73, checked in by Bart Vastenhouw, 3 years ago |
Fix for IssueValue hashcode.
|
File size:
961 bytes
|
Rev | Line | |
---|
[73] | 1 | from setuptools import setup, find_packages
|
---|
| 2 |
|
---|
| 3 | setup(
|
---|
| 4 | name='geniusweb',
|
---|
| 5 | version='1.1.2',
|
---|
| 6 | description='GeniusWeb glue code to connect python3 parties',
|
---|
| 7 | url='https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWeb',
|
---|
| 8 | author='W.Pasman',
|
---|
| 9 | #packages={'src':'*'},
|
---|
| 10 | packages = find_packages(exclude=["test", "test.*","test.*.*"]),
|
---|
| 11 | package_data = { 'geniusweb': ['py.typed'],'tudelft': ['py.typed'] },
|
---|
| 12 | install_requires=[
|
---|
| 13 | "pyson@https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/312/pyson/dist/pyson-1.1.3.tar.gz",
|
---|
| 14 | "utilities@https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/309/utilitiespy/dist/utilities-1.0.4.tar.gz",
|
---|
| 15 | "logging@https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/226/loggingpy/dist/logging-1.0.0.tar.gz",
|
---|
| 16 | "websocket-client==1.0.1"
|
---|
| 17 | ],
|
---|
| 18 |
|
---|
| 19 | classifiers=[
|
---|
| 20 | 'Programming Language :: Python :: 3.8',
|
---|
| 21 | 'Programming Language :: Python :: 3.9'
|
---|
| 22 | ],
|
---|
| 23 | ) |
---|
Note:
See
TracBrowser
for help on using the repository browser.