source: utilitiespy/setup.py@ 1271

Last change on this file since 1271 was 1251, checked in by wouter, 3 days ago

#393 added Keys class to support python dict_keys being a first class citizen

File size: 478 bytes
RevLine 
[222]1from setuptools import setup, find_packages
2
3setup(
4 name='utilities',
[1251]5 version='1.1.2',
[222]6 description='toolbox for lazy list manipulation',
7 url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/',
8 author='W.Pasman',
9 #packages={'src':'*'},
[224]10 packages = find_packages(exclude=["test", "test.*"]),
[222]11 package_data = { 'tudelft': ['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.