-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·36 lines (30 loc) · 953 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='qregpy',
version='1.1.1',
description='Query-centric regression model.',
classifiers=[
'Development Status :: 1.1',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Approximate Query Processing :: Regression :: ensemble method',
],
keywords='Query-centric Regression',
url='https://github.com/qingzma/QReg',
author='Qingzhi Ma',
author_email='Q.Ma.2@warwick.ac.uk',
long_description=readme,
license=license,
packages=['qregpy'],#find_packages(exclude=('tests', 'docs','results'))
zip_safe=False,
install_requires=[
'xgboost','numpy','scikit-learn'
],
test_suite='nose.collector',
tests_require=['nose'],
)