-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove emojis so windows can build package
- Loading branch information
Showing
1 changed file
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,21 @@ | |
|
||
PACKAGE_NAME = "hyppo" | ||
DESCRIPTION = "A comprehensive independence testing package" | ||
with open("README.md", "r") as f: | ||
LONG_DESCRIPTION = f.read() | ||
LONG_DESCRIPTION = """ | ||
hyppo (**HYP**othesis Testing in **P**yth**O**n, pronounced "Hippo") is an open-source | ||
software package for multivariate hypothesis testing. We decided to develop hyppo for | ||
the following reasons: | ||
* With the increase in the amount of data in many fields, hypothesis testing for high | ||
dimensional and nonlinear data is important | ||
* Libraries in R exist, but their interfaces are inconsistent and most are not available | ||
in Python | ||
hyppo intends to be a comprehensive multivariate hypothesis testing package and runs on | ||
all major versions of operating systems. It also includes novel tests not found in other | ||
packages. It is quick to install and free of charge. If you need to use multivariate | ||
hypothesis testing, be sure to give hyppo a try!" | ||
""" | ||
AUTHOR = ("Sambit Panda",) | ||
AUTHOR_EMAIL = "[email protected]" | ||
URL = "https://github.com/neurodata/hyppo" | ||
|