Skip to content

Commit

Permalink
Merge pull request #2 from hdsr-mid/prepare_pypi_release1
Browse files Browse the repository at this point in the history
[done] stable release
  • Loading branch information
renierkramerhdsr authored Jan 7, 2021
2 parents f072952 + 6d950d1 commit abe8e10
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pip-delete-this-directory.txt
htmlcov/
.tox/
.nox/
.coverage
.coveragerc
.coverage.*
.cache
nosetests.xml
Expand Down
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
0.2 (2021-01-07)
----------------

- Stable release.
- Updated requirements.txt, setup.cdf, and setup.py.


0.1 (2021-01-07)
----------------

Expand Down
File renamed without changes.
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pathlib>=1.0.1
typing>=3.7.4.3
pytest==6.2.1
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
[tool:pytest]
# addopts = --cov
python_files = test_*.py
testpaths = tests
python_files = tests.py test_*.py


[flake8]
Expand Down
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from distutils.core import setup


version = "0.1"
version = "0.2"

long_description = "\n\n".join([open("README.rst").read()])
long_description = "\n\n".join([open("README.md").read()])

install_requires = [
"pathlib",
Expand All @@ -24,18 +24,17 @@
author="Renier Kramer",
author_email="renier.kramer@hdsr.nl",
url="https://github.com/hdsr-mid/path_finder",
download_url="xx",
download_url="https://github.com/hdsr-mid/path_finder/archive/v0.2.tar.gz",
keywords=["interface", "path", "directory", "filename", "glob", "regex", "find"],
install_requires=install_requires,
tests_require=tests_require,
extras_require={"test": tests_require},
classifiers=[
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand Down

0 comments on commit abe8e10

Please sign in to comment.