Last change
on this file since 87 was 84, checked in by Bart Vastenhouw, 3 years ago |
Added time-dependent parties for python and simpleRunner-GUI for java
|
File size:
961 bytes
|
Line | |
---|
1 | from setuptools import setup, find_packages
|
---|
2 |
|
---|
3 | setup(
|
---|
4 | name='geniusweb',
|
---|
5 | version='1.1.4',
|
---|
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/314/utilitiespy/dist/utilities-1.0.5.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.