-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (27 loc) · 1.1 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
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_desc = fh.read()
setup(
name='pypair',
version='0.0.1',
author='Jee Vang',
author_email='vangjee@gmail.com',
packages=find_packages(exclude=('*.tests', '*.tests.*', 'tests.*', 'tests')),
description='Pairwise association measures of statistical variable types',
long_description=long_desc,
long_description_content_type='text/markdown',
url='https://github.com/vangj/py-bbn',
keywords=' '.join(['statistics', 'pairwise', 'association', 'correlation', 'measurement', 'strength']),
install_requires=['scipy', 'numpy', 'pandas'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Development Status :: 5 - Production/Stable'
],
include_package_data=True,
test_suite='nose.collector'
)