-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
28 lines (23 loc) · 894 Bytes
/
setup.py
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
28
import os
from setuptools import setup, find_packages
def read(name):
return open(os.path.join(os.path.dirname(__file__), name)).read()
setup(
name='baloo',
description='Implementing the bare necessities of Pandas with the lazy evaluating and optimizing Weld framework.',
long_description=read('README.md'),
long_description_content_type='text/markdown',
version='0.0.5',
license='BSD 3-Clause',
packages=find_packages(),
package_data={'baloo.weld.libs': ['libweld.so', 'numpy_weld_convertor.so', 'LICENSE'],
'baloo.weld.pyweld': ['LICENSE'],
'baloo.weld.convertors': ['LICENSE']},
include_package_data=True,
url='https://github.com/radujica/baloo',
author='Radu Jica',
author_email='[email protected]',
install_requires=['pandas', 'numpy', 'tabulate'],
platforms='linux',
python_requires='>=3.0'
)