Skip to content

Commit 0632d8d

Browse files
committed
setup
1 parent a266545 commit 0632d8d

1 file changed

Lines changed: 9 additions & 7 deletions

File tree

setup.py

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
if platform.system() == 'Darwin':
1717

1818
compile_opts = [ '-std=c++11',
19-
'-mmacosx-version-min=10.9',
19+
'-mmacosx-version-min=10.7',
2020
'-stdlib=libc++',
2121
'-Ofast' ]
2222

@@ -98,7 +98,7 @@
9898

9999
setup( name='redblackpy',
100100
ext_modules = cythonize(ext_modules),
101-
version='0.1.0.0',
101+
version='0.1.1.0',
102102
author='Solodskikh Kirill',
103103
author_email='hypo@intuition.engineering',
104104
maintainer='Intuition',
@@ -114,8 +114,10 @@
114114
license='Apache License 2.0',
115115
long_description='RedBlackPy is a light Python library that provides data structures \
116116
aimed to fast insertion, removal and self sorting to manipulating ordered data in efficient way.\
117-
The core part of the library had been written on C++ and then was wrapped in Cython. \
118-
Hope that many would find the primary data structures of this library very handy in working \
119-
with time series. One of the main feature of this structures is an access by arbitrary \
120-
key using interpolation, what makes processing of multiple non synchronized time series very simple.\
121-
All data structures based on red black trees.' )
117+
The core part of the library had been written on C++ and then was wrapped in Cython. \
118+
Hope that many would find the primary data structures of this library very handy in working \
119+
with time series. One of the main feature of this structures is an access by arbitrary \
120+
key using interpolation, what makes processing of multiple non synchronized time series very simple.\
121+
All data structures based on red black trees.',
122+
classifiers = [ 'Programming Language :: Python :: 2.7',
123+
'Programming Language :: Python :: 3' ] )

0 commit comments

Comments
 (0)