Skip to content

Commit

Permalink
Include extras_require in setup
Browse files Browse the repository at this point in the history
  • Loading branch information
pjkundert committed Jan 13, 2025
1 parent 3b0861f commit cce52ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,9 @@
setup(
name = "cpppo",
version = __version__,
tests_require = tests_require,
install_requires = install_requires,
tests_require = tests_require,
extras_require = extras_require,
packages = package_dir.keys(),
package_dir = package_dir,
zip_safe = False,
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = ( 5, 2, 1 )
__version_info__ = ( 5, 2, 2 )
__version__ = '.'.join( map( str, __version_info__ ))

0 comments on commit cce52ef

Please sign in to comment.