Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ all releases are available on `PyPI <https://pypi.org/project/pytask-r>`_ and
`Anaconda.org <https://anaconda.org/pytask/pytask-r>`_.


0.0.8 - 2021-xx-xx
0.0.8 - 2021-03-03
------------------

- :gh:`10` fixes some post-release issues.
- :gh:`12` add dependencies to ``setup.py``.


0.0.7 - 2021-02-25
Expand Down
11 changes: 6 additions & 5 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
include LICENSE
include versioneer.py
include src/pytask_r/_version.py
prune .conda
prune tests

exclude *.rst
exclude *.yml
exclude *.yaml
exclude tox.ini

prune .conda
prune tests
include LICENSE
include README.rst
include versioneer.py
include src/pytask_r/_version.py
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,11 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: R",
],
install_requires=["pytask >= 0.0.9"],
platforms="any",
packages=find_packages(where="src"),
package_dir={"": "src"},
entry_points={"pytask": ["pytask_r = pytask_r.plugin"]},
include_package_data=True,
zip_false=False,
)