source:
uri/setup.py@
1554
Last change on this file since 1554 was 1477, checked in by , 5 months ago | |
---|---|
File size: 435 bytes |
Line | |
---|---|
1 | from setuptools import setup |
2 | |
3 | setup( |
4 | name='uri', |
5 | version='2.0.1', |
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.