-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
37 lines (35 loc) · 1.08 KB
/
setup.cfg
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
37
[metadata]
name = pypair
version = 0.0.1
author = Jee Vang
author_email = [email protected]
description = Pairwise association measures of statistical variable types
long_description: file: README.md
long_description_content_type = text/markdown
description_file = README.md
url = https://github.com/oneoffcoder/py-pair
keywords = statistics, pairwise, association, correlation, concordance, measurement, strength, pyspark
install_requires = scipy, numpy, pandas, scikit-learn, pyspark
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
[flake8]
max-line-length = 120
ignore = E501 E731
[nosetests]
verbosity = 3
with-doctest = 1
with-coverage = 1
with-id = 1
cover-erase = 1
cover-html = 1
cover-html-dir = coverage
cover-package = pypair
detailed-errors = 1