-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (38 loc) · 1.59 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
37
38
39
40
from setuptools import setup
from setuptools import find_packages
summary = "STAR_outliers (Skew and Tail-heaviness "
summary += "Adjusted Removal of outliers) is an open "
summary += "source python package that determines "
summary += "which points are outliers relative to their "
summary += "distributions shapes. An exponential "
summary += "tail fit is used to determine outlier "
summary += "status if the distribution behaves in "
summary += "a sufficiently exponential-like manner. "
summary += "Otherwise, the data is transformed and "
summary += "fitted to a four parameteter tukey "
summary += "distribution as described in the paper "
summary += "titled 'Outlier identification for skewed "
summary += "and/or heavy-tailed unimodal multivariate "
summary += "distributions'. \n\nplease visit the "
summary += "[github page](https://github.com/Epistasis"
summary += "Lab/STAR_outliers) for more information."
ep_val = {"console_scripts": ["STAR_outliers = STAR_outliers:main"]}
setup(
long_description = summary,
long_description_content_type = "text/markdown",
packages = find_packages(),
version = "0.1.12",
python_requires = ">=3.6,<=3.9",
name = "STAR_outliers",
entry_points = ep_val,
py_modules=["STAR_outliers", "STAR_outliers_library",
"STAR_outliers_plotting_library",
"STAR_outliers_polishing_library",
"STAR_outliers_testing_library"],
setup_requires=["matplotlib"],
install_requires=["numpy",
"pandas",
"tqdm",
"scipy",
"mock"]
)