We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66061c8 commit b93a2b7Copy full SHA for b93a2b7
pavement.py
@@ -78,8 +78,8 @@
78
79
),
80
81
- packaging = Bunch(
82
- outdir='~/Desktop',
+ sdist = Bunch(
+ dist_dir=os.path.expanduser('~/Desktop'),
83
84
85
)
@@ -101,12 +101,7 @@ def remake_directories(*dirnames):
101
def sdist():
102
"""Create a source distribution.
103
"""
104
- # Move the output file to the desktop
105
- dist_files = path('dist').glob('*.tar.gz')
106
- dest_dir = path(options.packaging.outdir).expanduser()
107
- for f in dist_files:
108
- f.move(dest_dir)
109
- return
+ pass
110
111
@task
112
def html():
0 commit comments