Thank you for taking the time to contribute to this project! We appreciate your help and welcome any contributions you make.
When contributing, please follow the Code of Conduct, and to contribute, you can do the following:
- Fork the repository
- Create a new branch for your changes
- Make your changes and commit them
- Push the new branch to your fork
- Submit a pull request
First, clone the repository:
git clone https://github.com/realhuman101/AFFP.git
Then, install the dependencies:
pip install -r requirements.txt
Or, depending on your installation:
pip3 install -r requirements.txt
To install the program itself in development mode, run the following command:
python setup.py develop
Or, depending on your installation:
python3 setup.py develop
To run the program, run the following command:
AWP
Please make sure you follow all the Flake8 formatting rules (besides W191
and E501
, E128
, and F401
only if there is a viable reason). You can check this by running the following command:
flake8 --ignore=W191,E501,F401,E128