Skip to content

Commit

Permalink
update readme, fix setup
Browse files Browse the repository at this point in the history
  • Loading branch information
inuyasha2012 committed Sep 19, 2018
1 parent 8c8db2c commit eddb2af
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ test-all: ## run tests on every Python version with tox
tox

coverage: ## check code coverage quickly with the default Python
coverage run --source pypsy -m pytest
coverage run --source psy -m pytest
coverage report -m
coverage html
$(BROWSER) htmlcov/index.html
Expand Down
18 changes: 14 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
.. image:: https://coveralls.io/repos/github/inuyasha2012/pypsy/badge.svg?branch=master
:target: https://coveralls.io/github/inuyasha2012/pypsy?branch=master

.. image:: https://img.shields.io/pypi/v/psy.svg
:target: https://pypi.python.org/pypi/psy

pypsy
=====

`中文 <./README_ZH.rst>`_

`DINA Model and Parameter Estimation: A
Didactic <http://www.stat.cmu.edu/~brian/PIER-methods/For%202013-03-04/Readings/de%20la%20Torre-dina-est-115-30-jebs.pdf>`

psychometrics package, including structural equation model, confirmatory
factor analysis, unidimensional item response theory, multidimensional
item response theory, cognitive diagnosis model, factor analysis and
Expand Down Expand Up @@ -144,17 +144,27 @@ Algorithm

Maximum information method for multidimensional item response theory

--------------

Require
-------

- numpy

- progressbar2

--------------

How to use it
-------------

See demo in detail
install
~~~~~~~
::

pip install psy

See demo

TODO LIST
---------
Expand Down
10 changes: 10 additions & 0 deletions README_ZH.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,25 @@ GH积分只能计算低维度的参数估计

多维项目反应理论的最大信息法

--------------

require
-------

- numpy
- progressbar2

--------------

使用方法
--------

install
~~~~~~~
::

pip install psy

详见demo

TODO LIST
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ tag = True
search = version='{current_version}'
replace = version='{new_version}'

[bumpversion:file:pypsy/__init__.py]
[bumpversion:file:psy/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
license="MIT license",
long_description=readme + '\n\n' + history,
include_package_data=True,
keywords='pypsy',
name='pypsy',
keywords='psy',
name='psy',
packages=find_packages(include=['psy']),
setup_requires=setup_requirements,
test_suite='tests',
Expand Down

0 comments on commit eddb2af

Please sign in to comment.