Last change
on this file was 206, checked in by wouter, 4 years ago |
#87 trying to work around the python library namespaces
|
File size:
471 bytes
|
Rev | Line | |
---|
[202] | 1 | from setuptools import setup, find_packages
|
---|
| 2 |
|
---|
| 3 | setup(
|
---|
| 4 | name='listener',
|
---|
| 5 | version='1.0.0',
|
---|
[203] | 6 | description='basic listener and listenable class',
|
---|
[202] | 7 | url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/',
|
---|
| 8 | author='W.Pasman',
|
---|
| 9 | #packages={'src':'*'},
|
---|
| 10 | packages = find_packages(),
|
---|
[206] | 11 | package_data = { 'tudelft_utilities_listener': ['py.typed'] },
|
---|
[202] | 12 | install_requires=[
|
---|
| 13 | ],
|
---|
| 14 | classifiers=[
|
---|
| 15 | 'Programming Language :: Python :: 3'
|
---|
| 16 | ]
|
---|
| 17 | ) |
---|
Note:
See
TracBrowser
for help on using the repository browser.