source:
uri/setup.py@
295
Last change on this file since 295 was 295, checked in by , 3 years ago | |
---|---|
File size: 426 bytes |
Line | |
---|---|
1 | from setuptools import setup |
2 | |
3 | setup( |
4 | name='uri', |
5 | version='1.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 = ['rfc3986'], |
11 | package_data = { '': ['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.