Skip to content

Commit

Permalink
[Versioning] Housekeeping in setup.py (#1816)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmoens authored Jan 19, 2024
1 parent 2ecb709 commit 57139bd
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,18 @@ def _main(argv):
url="https://github.com/pytorch/rl",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD",
license="MIT",
# Package info
packages=find_packages(exclude=("test", "tutorials")),
packages=find_packages(
exclude=(
"test",
"tutorials",
"docs",
"examples",
"knowledge_base",
"packaging",
)
),
ext_modules=get_extensions(),
cmdclass={
"build_ext": BuildExtension.with_options(no_python_abi_suffix=True),
Expand Down

0 comments on commit 57139bd

Please sign in to comment.