Last change
on this file since 301 was 297, checked in by wouter, 3 years ago |
#100 uri is now uri.uri ...... because of shit with setup.py typing hints
|
File size:
435 bytes
|
Rev | Line | |
---|
[237] | 1 | from setuptools import setup
|
---|
[229] | 2 |
|
---|
[231] | 3 | setup(
|
---|
[235] | 4 | name='uri',
|
---|
[297] | 5 | version='2.0.0',
|
---|
[267] | 6 | description='Immutable URI container',
|
---|
| 7 | url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/uri',
|
---|
[231] | 8 | author='W.Pasman',
|
---|
| 9 | #packages={'src':'*'},
|
---|
[297] | 10 | packages = ['uri','rfc3986'],
|
---|
| 11 | package_data = { 'uri': ['py.typed'] },
|
---|
[235] | 12 | install_requires=[],
|
---|
[230] | 13 | classifiers=[
|
---|
[229] | 14 | 'Programming Language :: Python :: 3',
|
---|
[236] | 15 | ],
|
---|
| 16 | py_modules=['uri']
|
---|
[231] | 17 | ) |
---|
Note:
See
TracBrowser
for help on using the repository browser.