This repository has been archived by the owner on Nov 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite README and switch to Markdown
- Loading branch information
1 parent
baa4683
commit d6d8cdb
Showing
7 changed files
with
106 additions
and
58 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
======= | ||
Credits | ||
======= | ||
|
||
Creator | ||
------- | ||
|
||
* Aaron Bassett <[email protected]> | ||
|
||
Contributors | ||
------------ | ||
|
||
* John Sutherland - @sneeu | ||
* Luís Rodrigues - @lfrodrigues | ||
* @Zeioth | ||
* Max Arnold - @max-arnold | ||
* Marcin Zajączkowski - @szpak | ||
* @simaojf |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,15 +3,15 @@ Contributing | |
============ | ||
|
||
Contributions are welcome, and they are greatly appreciated! Every | ||
little bit helps, and credit will always be given. | ||
little bit helps, and credit will always be given. | ||
|
||
You can contribute in many ways: | ||
|
||
Types of Contributions | ||
---------------------- | ||
|
||
Report Bugs | ||
~~~~~~~~~~~ | ||
----------- | ||
|
||
Report bugs at https://github.com/aaronbassett/DisposableEmailChecker/issues. | ||
|
||
|
@@ -22,26 +22,26 @@ If you are reporting a bug, please include: | |
* Detailed steps to reproduce the bug. | ||
|
||
Fix Bugs | ||
~~~~~~~~ | ||
-------- | ||
|
||
Look through the GitHub issues for bugs. Anything tagged with "bug" | ||
is open to whoever wants to implement it. | ||
|
||
Implement Features | ||
~~~~~~~~~~~~~~~~~~ | ||
------------------ | ||
|
||
Look through the GitHub issues for features. Anything tagged with "feature" | ||
is open to whoever wants to implement it. | ||
|
||
Write Documentation | ||
~~~~~~~~~~~~~~~~~~~ | ||
------------------- | ||
|
||
django-disposable-email-checker could always use more documentation, whether as part of the | ||
django-disposable-email-checker could always use more documentation, whether as part of the | ||
official django-disposable-email-checker docs, in docstrings, or even on the web in blog posts, | ||
articles, and such. | ||
|
||
Submit Feedback | ||
~~~~~~~~~~~~~~~ | ||
--------------- | ||
|
||
The best way to send feedback is to file an issue at https://github.com/aaronbassett/DisposableEmailChecker/issues. | ||
|
||
|
@@ -58,32 +58,32 @@ Get Started! | |
Ready to contribute? Here's how to set up `DisposableEmailChecker` for local development. | ||
|
||
1. Fork the `DisposableEmailChecker` repo on GitHub. | ||
2. Clone your fork locally:: | ||
2. Clone your fork locally | ||
|
||
$ git clone [email protected]:your_name_here/DisposableEmailChecker.git | ||
|
||
3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development:: | ||
3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development | ||
|
||
$ mkvirtualenv DisposableEmailChecker | ||
$ cd DisposableEmailChecker/ | ||
$ python setup.py develop | ||
|
||
4. Create a branch for local development:: | ||
4. Create a branch for local development | ||
|
||
$ git checkout -b name-of-your-bugfix-or-feature | ||
|
||
Now you can make your changes locally. | ||
|
||
5. When you're done making changes, check that your changes pass flake8 and the | ||
tests, including testing other Python versions with tox:: | ||
tests, including testing other Python versions with tox | ||
|
||
$ flake8 disposable_email_checker tests | ||
$ python setup.py test | ||
$ tox | ||
|
||
To get flake8 and tox, just pip install them into your virtualenv. | ||
To get flake8 and tox, just pip install them into your virtualenv. | ||
|
||
6. Commit your changes and push your branch to GitHub:: | ||
6. Commit your changes and push your branch to GitHub | ||
|
||
$ git add . | ||
$ git commit -m "Your detailed description of your changes." | ||
|
@@ -100,13 +100,13 @@ Before you submit a pull request, check that it meets these guidelines: | |
2. If the pull request adds functionality, the docs should be updated. Put | ||
your new functionality into a function with a docstring, and add the | ||
feature to the list in README.rst. | ||
3. The pull request should work for Python 2.6, 2.7, and 3.3, and for PyPy. Check | ||
3. The pull request should work for Python 2.6, 2.7, and 3.3, and for PyPy. Check | ||
https://travis-ci.org/aaronbassett/DisposableEmailChecker/pull_requests | ||
and make sure that the tests pass for all supported Python versions. | ||
|
||
Tips | ||
---- | ||
|
||
To run a subset of tests:: | ||
To run a subset of tests | ||
|
||
$ python -m unittest tests.test_disposable_email_checker |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
History | ||
------- | ||
|
||
|
||
##### 1.0.0 (2015-10-13) | ||
|
||
* Complete rewrite and version 1 release! | ||
|
||
##### 1.2.1 (2015-11-04) | ||
|
||
* Added optional block-disposable-email.com API integration |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -24,14 +24,13 @@ | |
os.system("git push --tags") | ||
sys.exit() | ||
|
||
readme = open('README.rst').read() | ||
history = open('HISTORY.rst').read().replace('.. :changelog:', '') | ||
readme = open('README.md').read() | ||
|
||
setup( | ||
name='django-disposable-email-checker', | ||
version=version, | ||
description="""Django package to detect ~890 domains used by disposable email services""", | ||
long_description=readme + '\n\n' + history, | ||
long_description=readme, | ||
author='Aaron Bassett', | ||
author_email='[email protected]', | ||
url='https://github.com/aaronbassett/DisposableEmailChecker', | ||
|