Last change
on this file since 222 was 214, checked in by wouter, 3 years ago |
fix py.typed reference (would be nice if setup warned...)
|
File size:
571 bytes
|
Rev | Line | |
---|
[204] | 1 | from setuptools import setup, find_packages
|
---|
| 2 |
|
---|
| 3 | setup(
|
---|
| 4 | name='logging',
|
---|
| 5 | version='1.0.0',
|
---|
| 6 | description='basic logging',
|
---|
| 7 | url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/',
|
---|
| 8 | author='W.Pasman',
|
---|
| 9 | #packages={'src':'*'},
|
---|
| 10 | packages = find_packages(),
|
---|
[214] | 11 | package_data = { 'tudelft_utilities_logging': ['py.typed'] },
|
---|
[204] | 12 | install_requires=[
|
---|
[212] | 13 | "listener@https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/211/listenerpy/dist/listener-1.0.0.tar.gz",
|
---|
[207] | 14 |
|
---|
[204] | 15 | ],
|
---|
| 16 | classifiers=[
|
---|
| 17 | 'Programming Language :: Python :: 3'
|
---|
| 18 | ]
|
---|
| 19 | ) |
---|
Note:
See
TracBrowser
for help on using the repository browser.