-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* MAINT make release 1.1 * removed logo * added long_description_content_type * TST check manifest works
- Loading branch information
Showing
5 changed files
with
57 additions
and
21 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 |
---|---|---|
|
@@ -24,3 +24,4 @@ recursive-exclude pyglmnet *.pyc | |
|
||
recursive-exclude doc * | ||
recursive-exclude tests *.py | ||
exclude tests |
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
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .pyglmnet import GLM, GLMCV, _grad_L2loss, _L2loss, simulate_glm, _gradhess_logloss_1d, _loss, ALLOWED_DISTRS | ||
from .utils import softmax, label_binarizer, set_log_level | ||
from .datasets import fetch_tikhonov_data | ||
__version__ = '1.0.1.dev0' | ||
__version__ = '1.1' |
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 |
---|---|---|
|
@@ -23,6 +23,7 @@ def get_version(): | |
MAINTAINER = "Pavan Ramkumar" | ||
MAINTAINER_EMAIL = "[email protected]" | ||
LICENSE = "MIT" | ||
URL = 'http://glm-tools.github.io/pyglmnet/' | ||
DOWNLOAD_URL = "https://github.com/glm-tools/pyglmnet.git" | ||
VERSION = get_version() # Get version without importing | ||
|
||
|
@@ -33,9 +34,11 @@ def get_version(): | |
maintainer_email=MAINTAINER_EMAIL, | ||
description=DESCRIPTION, | ||
license=LICENSE, | ||
url=URL, | ||
version=VERSION, | ||
download_url=DOWNLOAD_URL, | ||
long_description=open("README.rst").read(), | ||
long_description_content_type='text/x-rst', | ||
classifiers=[ | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Developers", | ||
|
@@ -56,4 +59,9 @@ def get_version(): | |
], | ||
platforms="any", | ||
packages=["pyglmnet"], | ||
project_urls={ | ||
'Documentation': 'http://glm-tools.github.io/pyglmnet/', | ||
'Bug Reports': 'https://github.com/glm-tools/pyglmnet/issues', | ||
'Source': 'https://github.com/glm-tools/pyglmnet', | ||
}, | ||
) |