-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·36 lines (30 loc) · 958 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
29
30
31
32
33
34
35
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='dbest',
version='2.1',
description='Model-based Approximate Query Processing (AQP) engine.',
classifiers=[
'Development Status :: 2.0',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Approximate Query Processing :: AQP :: Data Warehouse',
],
keywords='Approximate Query Processing AQP',
url='https://github.com/qingzma/DBEst',
author='Qingzhi Ma',
author_email='Q.Ma.2@warwick.ac.uk',
long_description=readme,
license=license,
packages=['dbest'],#find_packages(exclude=('tests', 'docs','results'))
zip_safe=False,
install_requires=[
'xgboost','numpy'
],
test_suite='nose.collector',
tests_require=['nose'],
)