Skip to content

Commit 5651b79

Browse files
authored
Add dependencies to setup.py. (#12)
1 parent a258fdd commit 5651b79

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGES.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ all releases are available on `PyPI <https://pypi.org/project/pytask-r>`_ and
77
`Anaconda.org <https://anaconda.org/pytask/pytask-r>`_.
88

99

10-
0.0.8 - 2021-xx-xx
10+
0.0.8 - 2021-03-03
1111
------------------
1212

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

1516

1617
0.0.7 - 2021-02-25

MANIFEST.in

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
include LICENSE
2-
include versioneer.py
3-
include src/pytask_r/_version.py
1+
prune .conda
2+
prune tests
43

54
exclude *.rst
65
exclude *.yml
76
exclude *.yaml
87
exclude tox.ini
98

10-
prune .conda
11-
prune tests
9+
include LICENSE
10+
include README.rst
11+
include versioneer.py
12+
include src/pytask_r/_version.py

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,11 @@
4040
"Programming Language :: Python :: 3.9",
4141
"Programming Language :: R",
4242
],
43+
install_requires=["pytask >= 0.0.9"],
4344
platforms="any",
4445
packages=find_packages(where="src"),
4546
package_dir={"": "src"},
4647
entry_points={"pytask": ["pytask_r = pytask_r.plugin"]},
48+
include_package_data=True,
4749
zip_false=False,
4850
)

0 commit comments

Comments
 (0)