Skip to content

Add dependencies to setup.py. #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 3, 2021
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
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ all releases are available on `Anaconda.org
<https://anaconda.org/pytask/pytask-environment>`_.


0.0.3 - 2021-03-03
------------------

- :gh:`5` adds dependencies to ``setup.py`` and missing ``README.rst`` to package.


0.0.2 - 2021-02-27
------------------

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_environment/_version.py
prune .conda
prune tests

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

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