bidict/setup.py

30 lines
1.2 KiB
Python
Raw Normal View History

2014-09-23 14:08:21 +00:00
from setuptools import setup
setup(
name='bidict',
2014-10-11 17:00:41 +00:00
version='0.3.2-dev',
2014-09-23 14:08:21 +00:00
author='Joshua Bronson',
author_email='jab@math.brown.edu',
description="2-way dict with convenient slice syntax: d[65] = 'A' -> d[:'A'] == 65",
long_description= 'Please see https://bidict.readthedocs.org/ for documentation.',
keywords='bidirectional, two-way, inverse, reverse, dict, dictionary, mapping',
url='https://github.com/jab/bidict',
license='ISCL',
py_modules=['bidict'],
zip_safe=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
2014-09-30 15:54:30 +00:00
'Natural Language :: English',
2014-09-23 14:08:21 +00:00
'Operating System :: OS Independent',
2014-09-30 15:54:30 +00:00
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering :: Mathematics',
2014-09-23 14:08:21 +00:00
'Topic :: Software Development :: Libraries :: Python Modules',
],
)