forked from perrygeo/pairing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 782 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name='pairing',
version="0.1.3",
packages=['pairing'],
long_description=("See https://github.com/perrygeo/pairing"),
author="Matthew Perry",
author_email="perrygeo@gmail.com",
description=("Encode pairs of integers as single integer values using the Cantor pairing algorithm"),
license="BSD",
keywords="encoding pairing cantor",
url="https://github.com/perrygeo/pairing",
classifiers=[
"Development Status :: 1 - Planning",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)