Last change
on this file since 100 was 100, checked in by ruud, 20 months ago |
python installs also wheel to avoid error messages
|
File size:
993 bytes
|
Line | |
---|
1 | from setuptools import setup, find_packages
|
---|
2 |
|
---|
3 | ver = '1.2.1'
|
---|
4 |
|
---|
5 | setup(
|
---|
6 | name='geniusweb',
|
---|
7 | version=ver,
|
---|
8 | description='GeniusWeb glue code to connect python3 parties',
|
---|
9 | url='https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWeb',
|
---|
10 | author='W.Pasman',
|
---|
11 | # packages={'src':'*'},
|
---|
12 | packages=find_packages(exclude=["test", "test.*", "test.*.*"]),
|
---|
13 | package_data={ 'geniusweb': ['py.typed'], 'tudelft': ['py.typed'] },
|
---|
14 | install_requires=[
|
---|
15 | "pyson@https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/312/pyson/dist/pyson-1.1.3.tar.gz",
|
---|
16 | "utilities@https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/314/utilitiespy/dist/utilities-1.0.5.tar.gz",
|
---|
17 | "logging@https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/226/loggingpy/dist/logging-1.0.0.tar.gz",
|
---|
18 | "websocket-client==1.0.1",
|
---|
19 | "PyQt5==5.15.6"
|
---|
20 | ],
|
---|
21 |
|
---|
22 | classifiers=[
|
---|
23 | 'Programming Language :: Python :: 3.8',
|
---|
24 | 'Programming Language :: Python :: 3.9'
|
---|
25 | ],
|
---|
26 | )
|
---|
Note:
See
TracBrowser
for help on using the repository browser.