forked from PaddlePaddle/Paddle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request PaddlePaddle#15 from LokeZhou/setup
setup add ppdiffusers
- Loading branch information
Showing
1 changed file
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,15 +46,19 @@ def read_requirements(): | |
|
||
setup( | ||
name="paddlemix", | ||
packages=find_packages(), | ||
packages=(find_packages()+ find_packages(where="./ppdiffusers",exclude=['tests','tests.*'])), | ||
package_dir={ | ||
"": ".", | ||
"ppdiffusers": "./ppdiffusers/ppdiffusers", | ||
}, | ||
version=read_version(), | ||
author="PaddleMIX Team", | ||
author_email="[email protected]", | ||
description=description, | ||
long_description=read_readme(), | ||
long_description_content_type="text/markdown", | ||
url="", | ||
keywords=["paddle", "paddlemix"], | ||
keywords=["paddle","paddlemix"], | ||
install_requires=REQUIRED_PACKAGES, | ||
python_requires=">=3.6", | ||
entry_points={ | ||
|
@@ -71,3 +75,4 @@ def read_requirements(): | |
], | ||
license="Apache 2.0", | ||
) | ||
|