|
1 | 1 | # |
2 | 2 | # Created by Soldoskikh Kirill. |
3 | | -# Copyright © 2018 Intuition. All rights reserved. |
| 3 | +# Copyright 2018 Intuition. All rights reserved. |
4 | 4 | # |
5 | 5 |
|
6 | 6 | import os |
|
16 | 16 | if platform.system() == 'Darwin': |
17 | 17 |
|
18 | 18 | compile_opts = [ '-std=c++11', |
19 | | - '-mmacosx-version-min=10.9', |
| 19 | + '-mmacosx-version-min=10.7', |
20 | 20 | '-stdlib=libc++', |
21 | 21 | '-Ofast' ] |
22 | 22 |
|
|
98 | 98 |
|
99 | 99 | setup( name='redblackpy', |
100 | 100 | ext_modules = cythonize(ext_modules), |
101 | | - version='0.1.0.0', |
| 101 | + version='0.1.1.0', |
102 | 102 | author='Solodskikh Kirill', |
103 | | - author_email='solodskihkirill@gmail.com', |
| 103 | + author_email='hypo@intuition.engineering', |
104 | 104 | maintainer='Intuition', |
105 | 105 | maintainer_email='dev@intuition.engineering', |
106 | 106 | install_requires=['cython>=0.27', 'pandas'], |
|
114 | 114 | license='Apache License 2.0', |
115 | 115 | long_description='RedBlackPy is a light Python library that provides data structures \ |
116 | 116 | 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