Skip to content
This repository was archived by the owner on Apr 14, 2024. It is now read-only.

Commit dc0a196

Browse files
committed
Restored functionality of setup/distribution as well as documentation generation
1 parent 46c8aee commit dc0a196

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

MANIFEST.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ include VERSION
22
include LICENSE
33
include CHANGES
44
include AUTHORS
5-
include README
5+
include README.rst
66

7-
graft test
7+
graft async/test
88

99
global-exclude .git*
1010
global-exclude *.pyc

doc/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# If extensions (or modules to document with autodoc) are in another directory,
1717
# add these directories to sys.path here. If the directory is relative to the
1818
# 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('../..'))
2020

2121
# -- General configuration -----------------------------------------------------
2222

setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,8 @@ def get_data_files(self):
7575
author_email = "[email protected]",
7676
url = "http://gitorious.org/git-python/async",
7777
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'])],
8180
license = "BSD License",
8281
zip_safe=False,
8382
long_description = """Async is a framework to process interdependent tasks in a pool of workers"""

0 commit comments

Comments
 (0)