Skip to content

Commit

Permalink
Bump version to 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
aitjcize committed Aug 18, 2017
1 parent 9594a77 commit 072bad7
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,29 @@
from distutils.core import setup, Extension

setup(
name="PyRabin",
version="0.5",
name='PyRabin',
version='0.6',
description = 'A python for generating rabin fingerprints.',
author = 'Wei-Ning Huang (AZ)',
author_email = '[email protected]',
url = 'http://github.com/aitjcize/pyrabin',
license = 'GPL',
ext_modules=[
Extension("rabin", [
"src/pyrabin.c",
"src/rabin.c",
"src/rabin_polynomial.c",
"src/utils.c",
Extension('rabin', [
'src/pyrabin.c',
'src/rabin.c',
'src/rabin_polynomial.c',
'src/utils.c',
], libraries=['crypto'])
]
],
classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)

0 comments on commit 072bad7

Please sign in to comment.