Skip to content

Commit

Permalink
add jinja2 as dependency packages to requirements and setup.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
brainelectronics committed Aug 5, 2022
1 parent 2e072b8 commit bfa781c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# List external packages here
# Avoid fixed versions
# to parse changelog semver
semver>=2.13.0,<3
semver>=2.13.0,<3
# to render template files
jinja2>=3.1.0,<4
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@
# For an analysis of "install_requires" vs pip's requirements files see:
# https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires=[
"semver>=2.13.0,<3"
"semver>=2.13.0,<3",
"jinja2>=3.1.0,<4"
], # Optional
# List additional groups of dependencies here (e.g. development
# dependencies). Users will be able to install these using the "extras"
Expand All @@ -160,6 +161,9 @@
# package_data={ # Optional
# "sample": ["package_data.dat"],
# },
package_data={
"changelog2version": ["templates/*"]
},
# Although 'package_data' is the preferred approach, in some case you may
# need to place data files outside of your packages. See:
# http://docs.python.org/distutils/setupscript.html#installing-additional-files
Expand Down

0 comments on commit bfa781c

Please sign in to comment.