File: setup.py

package info (click to toggle)
python-multi-key-dict 2.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, trixie
  • size: 92 kB
  • sloc: python: 440; makefile: 8
file content (29 lines) | stat: -rw-r--r-- 1,076 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!python

from distutils.core import setup

long_descr=''

with open('README.txt') as readme:
    long_descr = readme.read()

setup(name='multi_key_dict',
      version='2.0.3',
      description='Multi key dictionary implementation',
      author='Lukasz Forynski',
      author_email='lukasz.forynski@gmail.com',
      url='https://github.com/formiaczek/multi_key_dict',
      py_modules=['multi_key_dict'],
      license='License :: OSI Approved :: MIT License (http://opensource.org/licenses/MIT)',
      long_description=long_descr,
      classifiers=[
                   'Programming Language :: Python',
                   'Programming Language :: Python :: 2',
                   'Programming Language :: Python :: 3',
                   'License :: OSI Approved :: MIT License',
                   'Development Status :: 5 - Production/Stable',
                   'Operating System :: OS Independent',
                   'Intended Audience :: Developers',
                   'Topic :: Software Development :: Libraries :: Python Modules'
                   ]
      )