|
9 | 9 | from setuptools.command.build_ext import build_ext |
10 | 10 | from distutils.extension import Extension |
11 | 11 | from Cython.Build import cythonize |
12 | | -from setup_tools.code_generation import generate_from_cython_src |
13 | | -from setup_tools.types import TYPES |
| 12 | +from rbp_setup_tools.code_generation import generate_from_cython_src |
| 13 | +from rbp_setup_tools.types import TYPES |
14 | 14 |
|
15 | 15 |
|
16 | 16 | if platform.system() == 'Darwin': |
|
108 | 108 | url='https://intuitionengineeringteam.github.io/RedBlackPy/', |
109 | 109 | download_url='https://github.com/IntuitionEngineeringTeam/RedBlackPy/archive/master.zip', |
110 | 110 | zip_safe=False, |
111 | | - packages=['redblackpy', 'redblackpy.series', 'redblackpy.benchmark'], |
| 111 | + packages=[ 'redblackpy', 'redblackpy.series', |
| 112 | + 'redblackpy.benchmark', 'rbp_setup_tools' ], |
112 | 113 | package_data={'redblackpy.series': ['*.pxd']}, |
113 | | - license='Apache License 2.0' ) |
| 114 | + license='Apache License 2.0', |
| 115 | + long_description='RedBlackPy is a light Python library that provides data structures \ |
| 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.' ) |
0 commit comments