Skip to content

Commit 2d41265

Browse files
authored
Add dependencies to setup.py. (#5)
1 parent 2b4a533 commit 2d41265

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ all releases are available on `Anaconda.org
77
<https://anaconda.org/pytask/pytask-environment>`_.
88

99

10+
0.0.3 - 2021-03-03
11+
------------------
12+
13+
- :gh:`5` adds dependencies to ``setup.py`` and missing ``README.rst`` to package.
14+
15+
1016
0.0.2 - 2021-02-27
1117
------------------
1218

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_environment/_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 README.rst
10+
include LICENSE
11+
include versioneer.py
12+
include src/pytask_environment/_version.py

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,11 @@
3939
"Programming Language :: Python :: 3.8",
4040
"Programming Language :: Python :: 3.9",
4141
],
42+
install_requires=["pytask >0.0.7"],
4243
platforms="any",
4344
packages=find_packages(where="src"),
4445
package_dir={"": "src"},
4546
entry_points={"pytask": ["pytask_environment = pytask_environment.plugin"]},
47+
include_package_data=True,
4648
zip_false=False,
4749
)

0 commit comments

Comments
 (0)