deb-python-multi-key-dict/multi_key_dict/setup.py

28 lines
957 B
Python

#!python
from distutils.core import setup
long_descr=''
with open('README.txt') as readme:
long_descr = readme.read()
setup(name='multi_key_dict',
version='1.0.2',
description='Multi key dictionary implementation',
author='Lukasz Forynski',
author_email='lukasz.forynski@gmail.com',
url='https://github.com/formiaczek/python_data_structures',
py_modules=['multi_key_dict'],
license=['License :: OSI Approved :: MIT License (http://opensource.org/licenses/MIT)'],
long_description=long_descr,
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)