coxdev 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
coxdev-0.1.2/LICENSE ADDED
@@ -0,0 +1,24 @@
1
+ BSD 2-Clause License
2
+
3
+ Copyright (c) 2023, Jonathan Taylor
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ 1. Redistributions of source code must retain the above copyright notice, this
9
+ list of conditions and the following disclaimer.
10
+
11
+ 2. Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
19
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
22
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
23
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1 @@
1
+ include coxdev/_version.py
coxdev-0.1.2/PKG-INFO ADDED
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: coxdev
3
+ Version: 0.1.2
4
+ Summary: Library for computing Cox deviance
5
+ Home-page: https://github.org/jonathan-taylor/coxdev
6
+ Download-URL:
7
+ Author: Naras Balasubrimanian, Trevor Hastie, Jonathan Taylor
8
+ Author-email: Jonathan Taylor <jonathan.taylor@stanford.edu>, Trevor Hastie <hastie@stanford.edu>, Balasubramanian Narasimhan <naras@stanford.edu>
9
+ Maintainer: Naras Balasubrimanian, Trevor Hastie, Jonathan Taylor
10
+ Maintainer-email: Jonathan Taylor <jonathan.taylor@stanford.edu>
11
+ License-Expression: BSD-3-Clause
12
+ Platform: OS Independent
13
+ Classifier: Development Status :: 3 - Alpha
14
+ Classifier: Environment :: Console
15
+ Classifier: Intended Audience :: Science/Research
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python
18
+ Classifier: Topic :: Scientific/Engineering
19
+ Requires-Python: >=3.9
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: numpy>=1.7.1
23
+ Requires-Dist: joblib
24
+ Requires-Dist: pybind11
25
+ Requires-Dist: scipy
26
+ Dynamic: author
27
+ Dynamic: home-page
28
+ Dynamic: license-file
29
+ Dynamic: maintainer
30
+ Dynamic: platform
31
+
32
+ # cox_loglike
33
+ C library for evaluating Cox partial likelihood
34
+
35
+ # wheel build
36
+
37
+ ```
38
+ env EIGEN_LIBRARY_PATH=/path_to_eigen python -m build
39
+ ```
coxdev-0.1.2/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # cox_loglike
2
+ C library for evaluating Cox partial likelihood
3
+
4
+ # wheel build
5
+
6
+ ```
7
+ env EIGEN_LIBRARY_PATH=/path_to_eigen python -m build
8
+ ```