source:
immutablelistpy/setup.py@
243
Last change on this file since 243 was 242, checked in by , 4 years ago | |
---|---|
File size: 449 bytes |
Line | |
---|---|
1 | from setuptools import setup |
2 | |
3 | setup( |
4 | name='immutablelist', |
5 | version='1.0.0', |
6 | description='toolbox for lazy list manipulation', |
7 | url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/', |
8 | author='W.Pasman', |
9 | #packages={'src':'*'}, |
10 | packages = ['immutablelist'], |
11 | package_data = { 'immutablelist': ['py.typed'] }, |
12 | install_requires=[ |
13 | ], |
14 | classifiers=[ |
15 | 'Programming Language :: Python :: 3' |
16 | ] |
17 | ) |
Note:
See TracBrowser
for help on using the repository browser.