-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
26 lines (24 loc) · 896 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
24
25
26
from distutils.core import setup
from perfection import __version__ as VERSION
from codecs import open
setup(
name='perfection',
version=VERSION,
url='https://github.com/eddieantonio/perfection',
license='MIT',
author='Eddie Antonio Santos',
author_email='[email protected]',
description='Perfect hashing utilities for Python',
long_description=open('README.rst',encoding="UTF-8").read(),
packages=['perfection',],
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
download_url = 'https://github.com/eddieantonio/perfection/tarball/v' + VERSION,
)