source: geniuswebcore/setup.py@ 64

Last change on this file since 64 was 59, checked in by Wouter Pasman, 3 years ago

#44 manual commit of first public release, because this will cause the dist directory to move

File size: 1.0 KB
Line 
1from setuptools import setup, find_packages
2
3setup(
4 name='geniusweb',
5 version='1.0.0',
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/268/pyson/dist/pyson-1.0.0.tar.gz",
14 "utilities@https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/243/utilitiespy/dist/utilities-1.0.0.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 #install_requires=[ "packson3@http://localhost:8000/packson3-1.0.0.tar.gz"],
19
20 classifiers=[
21 'Programming Language :: Python :: 3.8',
22 'Programming Language :: Python :: 3.9'
23 ],
24)
Note: See TracBrowser for help on using the repository browser.