Skip to content

Commit 7101c3c

Browse files
committed
for PyPI
1 parent 0119be2 commit 7101c3c

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -96,18 +96,17 @@ plt.show()
9696
## 2\. Installation
9797

9898
You can install the package from
99-
[PyPI](https://pypi.org/project/densratio/). To install **densratio**,
100-
simply use pipenv (or pip, of course):
99+
[PyPI](https://pypi.org/project/densratio/).
101100

102101
``` :sh
103-
$ pipenv install densratio
102+
$ pip install densratio
104103
```
105104

106105
Also, you can install the package from
107106
[GitHub](https://github.com/hoxo-m/densratio_py).
108107

109108
``` :sh
110-
$ pipenv install git+https://github.com/hoxo-m/densratio_py.git
109+
$ pip install git+https://github.com/hoxo-m/densratio_py.git
111110
```
112111

113112
The source code for **densratio** package is available on GitHub at

README.rmd

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ author: Koji MAKIYAMA (hoxo_m), Ameya Daigavane (ameya98)
44
output:
55
md_document:
66
variant: gfm
7-
html_document
7+
html_document:
8+
keep_md: false
89
---
910

1011
<!-- README.md is generated from README.Rmd. Please edit that file -->
@@ -113,16 +114,15 @@ plt.show()
113114
## 2. Installation
114115

115116
You can install the package from [PyPI](https://pypi.org/project/densratio/).
116-
To install **densratio**, simply use pipenv (or pip, of course):
117117

118118
```:sh
119-
$ pipenv install densratio
119+
$ pip install densratio
120120
```
121121

122122
Also, you can install the package from [GitHub](https://github.com/hoxo-m/densratio_py).
123123

124124
```:sh
125-
$ pipenv install git+https://github.com/hoxo-m/densratio_py.git
125+
$ pip install git+https://github.com/hoxo-m/densratio_py.git
126126
```
127127

128128
The source code for **densratio** package is available on GitHub at https://github.com/hoxo-m/densratio_py.

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='densratio',
10-
version='0.2.1',
10+
version='0.2.2',
1111
description='A Python Package for Density Ratio Estimation',
1212
long_description=long_description,
1313
long_description_content_type='text/markdown',
@@ -20,7 +20,7 @@
2020
'Programming Language :: Python :: 3.7',
2121
'Topic :: Scientific/Engineering :: Artificial Intelligence',
2222
],
23-
keywords='density ratio, anomaly detection, change point detection, covariate shift',
23+
keywords='density ratio estimation, anomaly detection, change point detection, covariate shift',
2424
packages=find_packages(exclude=('tests', 'docs')),
2525
install_requires=['numpy'],
2626
project_urls={

0 commit comments

Comments
 (0)