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
|
Line | |
---|
1 | from setuptools import setup
|
---|
2 |
|
---|
3 | setup(
|
---|
4 | name='uri',
|
---|
5 | version='2.0.0',
|
---|
6 | description='Immutable URI container',
|
---|
7 | url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/uri',
|
---|
8 | author='W.Pasman',
|
---|
9 | #packages={'src':'*'},
|
---|
10 | packages = ['uri','rfc3986'],
|
---|
11 | package_data = { 'uri': ['py.typed'] },
|
---|
12 | install_requires=[],
|
---|
13 | classifiers=[
|
---|
14 | 'Programming Language :: Python :: 3',
|
---|
15 | ],
|
---|
16 | py_modules=['uri']
|
---|
17 | ) |
---|
Note:
See
TracBrowser
for help on using the repository browser.