-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
36 lines (34 loc) · 1.33 KB
/
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
36
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
setup(
name='ace',
version='0.3.3',
description=
'Non-parametric multivariate regressions by Alternating Conditional Expectations',
author='Nick Touran',
author_email='[email protected]',
url='https://github.com/partofthething/ace',
packages=find_packages(),
license='MIT',
long_description=long_description,
install_requires=['numpy', 'scipy>=0.17'],
keywords='regression ace multivariate statistics',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
test_suite='tests')