Skip to content

Commit

Permalink
fix: package submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
gusye1234 committed Sep 17, 2023
1 parent 837ef99 commit 9e13196
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion recad/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
torch.manual_seed(SEED)
torch.cuda.manual_seed_all(SEED)

__version__ = '0.0.1'
__version__ = '0.0.2'
__author__ = 'Jianbai Ye'
__url__ = 'https://github.com/gusye1234/recad'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages


vars2find = ['__author__', '__version__', '__url__']
Expand All @@ -18,7 +18,7 @@
url=varstfp['__url__'],
version=varstfp['__version__'],
author=varstfp['__author__'],
packages=['recad'],
packages=find_packages(exclude=['./tests']),
description='A unified framework for recommender system attacking',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 9e13196

Please sign in to comment.