This repository was archived by the owner on Apr 14, 2024. It is now read-only.
File tree 3 files changed +5
-6
lines changed
Filter options
3 files changed +5
-6
lines changed
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ include VERSION
2
2
include LICENSE
3
3
include CHANGES
4
4
include AUTHORS
5
- include README
5
+ include README.rst
6
6
7
- graft test
7
+ graft async/ test
8
8
9
9
global-exclude .git*
10
10
global-exclude *.pyc
Original file line number Diff line number Diff line change 16
16
# If extensions (or modules to document with autodoc) are in another directory,
17
17
# add these directories to sys.path here. If the directory is relative to the
18
18
# documentation root, use os.path.abspath to make it absolute, like shown here.
19
- sys .path .append (os .path .abspath ('../../../ ' ))
19
+ sys .path .append (os .path .abspath ('../..' ))
20
20
21
21
# -- General configuration -----------------------------------------------------
22
22
Original file line number Diff line number Diff line change @@ -75,9 +75,8 @@ def get_data_files(self):
75
75
author_email = "byronimo@gmail.com" ,
76
76
url = "http://gitorious.org/git-python/async" ,
77
77
packages = ('async' , 'async.mod' , 'async.test' , 'async.test.mod' ),
78
- package_data = {'async' : ['AUTHORS' , 'README' ]},
79
- package_dir = {'async' :'' },
80
- ext_modules = [Extension ('async.mod.zlib' , ['mod/zlibmodule.c' ])],
78
+ package_dir = {'async' :'async' },
79
+ ext_modules = [Extension ('async.mod.zlib' , ['async/mod/zlibmodule.c' ])],
81
80
license = "BSD License" ,
82
81
zip_safe = False ,
83
82
long_description = """Async is a framework to process interdependent tasks in a pool of workers"""
You can’t perform that action at this time.
0 commit comments