Skip to content

Commit dbffd0a

Browse files
authored
Add dependencies to setup.py. (#9)
1 parent 93278e5 commit dbffd0a

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGES.rst

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

99

10-
0.0.5 - 2021-xx-xx
10+
0.0.5 - 2021-03-04
1111
------------------
1212

1313
- :gh:`7` fix some post-release issues.
14+
- :gh:`9` adds dependencies to ``setup.py``.
1415

1516

1617
0.0.4 - 2021-02-25

MANIFEST.in

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
include LICENSE
2-
include versioneer.py
3-
include src/pytask_stata/_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_stata/_version.py

setup.py

+2
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.9"],
4243
platforms="any",
4344
packages=find_packages(where="src"),
4445
package_dir={"": "src"},
4546
entry_points={"pytask": ["pytask_stata = pytask_stata.plugin"]},
47+
include_package_data=True,
4648
zip_false=False,
4749
)

0 commit comments

Comments
 (0)