-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update README and CONTRIBUTE, and the installation guide.
- Loading branch information
Showing
7 changed files
with
1,224 additions
and
76 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 |
---|---|---|
@@ -1,10 +1,20 @@ | ||
# Welcome to pref_voting! | ||
|
||
This is a small project, so the best way to contribute is to simply get in contact with Wes Holliday ([email protected]) and Eric Pacuit ([email protected]) or to post an [issue](https://github.com/voting-tools/pref_voting/issues). | ||
This is a small project, so if you have any questions about the project or how to contribute, then the best thing to do is get in contact with Wes Holliday ([email protected]) and Eric Pacuit ([email protected]). | ||
|
||
## How to contribute | ||
|
||
Further comments: | ||
- Documentation is available at https://pref-voting.readthedocs.io/. | ||
- If you would like to contribute but don't have a concrete idea, please | ||
contact us directly (Wes Holliday, [email protected] and Eric Pacuit, [email protected]). | ||
- If there is a voting method that you think should be included in the package, please let us know. | ||
- If there is a voting method that you think should be included in the package, please let us know by posting an [issue](https://github.com/voting-tools/pref_voting/issues). | ||
- If you have code that you would like to contribute, feel free to clone the repository and submit a pull request (PR) once your version is functional. We can then review and discuss your code. You're also welcome to contact us before submitting a PR. | ||
|
||
## Report issues or problems with the software | ||
|
||
- If you encounter any issues or bugs, please post an [issue](https://github.com/voting-tools/pref_voting/issues) | ||
|
||
## Seek support | ||
|
||
- There is extensive documentation available at https://pref-voting.readthedocs.io/. | ||
- You can explore some of the voting methods implemented in the package by vising [https://pref.tools/pref_voting](https://pref.tools/pref_voting). | ||
- There are a number of helpful notebooks in the [howto directory](https://github.com/voting-tools/pref_voting/tree/main/howto) of the repository that demonstrate how to use the package. |
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,10 +1,21 @@ | ||
Installation | ||
================ | ||
|
||
|
||
``pref_voting`` is available on pypi and can be installed using pip. | ||
|
||
.. code-block:: shell | ||
pip install pref_voting | ||
pip3 install pref_voting | ||
Alternatively, you can install the latest development version from source: | ||
|
||
.. code-block:: shell | ||
git clone https://github.com/voting-tools/pref_voting | ||
pip3 install . | ||
Requirements: | ||
|
||
* Python 3.9+ | ||
* The following pip packages are required and installed automatically: filelock, scipy, networkx, tabulate, matplotlib, nashpy, numba, ortools, pathos, preflibtools, prefsampling, and seaborn | ||
|
Oops, something went wrong.