forked from mredolatti/mmh3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 817 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 817 Bytes
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
from distutils.core import setup, Extension
mmh3module = Extension('mmh3', sources=['mmh3module.cpp', 'murmur_hash_3.cpp'])
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: Public Domain',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Utilities'
]
setup(
name='splitmmh3',
version='1.0.3',
description=('An adaption of a public domain library'
'with python2.7 support'),
license='Public Domain',
author='Split software',
author_email='python@split.io',
url='http://packages.python.org/splitmmh3',
ext_modules=[mmh3module],
keywords=['hash', 'MurmurHash'],
long_description=open('README.rst').read(),
classifiers=classifiers
)