Release 1.0.10
This commit is contained in:
parent
32c8f4cdfa
commit
79dc667cb0
3 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
1.0.10:
|
||||||
|
- First pypi-free release (they removed everything between 1.0.6 and 1.0.9).
|
||||||
|
- Removing unnecessary files from the source tarball.
|
||||||
|
|
||||||
1.0.9:
|
1.0.9:
|
||||||
- License adjustments, help on installing directly from repository
|
- License adjustments, help on installing directly from repository
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,10 @@ include AUTHORS
|
||||||
include LICENSE
|
include LICENSE
|
||||||
include README.md
|
include README.md
|
||||||
include CHANGELOG.txt
|
include CHANGELOG.txt
|
||||||
|
recursive-exclude .gitea *
|
||||||
recursive-exclude tests *
|
recursive-exclude tests *
|
||||||
recursive-exclude * __pycache__
|
recursive-exclude * __pycache__
|
||||||
recursive-exclude * *.pyc
|
recursive-exclude * *.pyc
|
||||||
recursive-exclude * *.pyo
|
recursive-exclude * *.pyo
|
||||||
recursive-exclude * *.orig
|
recursive-exclude * *.orig
|
||||||
|
exclude .gitignore .isort.cfg .travis.yml
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -57,7 +57,7 @@ class BuildPyCommand(build_py):
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='py3-validate-email',
|
name='py3-validate-email',
|
||||||
version='1.0.9',
|
version='1.0.10',
|
||||||
packages=find_packages(exclude=['tests']),
|
packages=find_packages(exclude=['tests']),
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'dnspython~=2.2', 'idna~=3.3', 'filelock~=3.7',
|
'dnspython~=2.2', 'idna~=3.3', 'filelock~=3.7',
|
||||||
|
|
Loading…
Reference in a new issue