Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Apr 14, 2024. It is now read-only.

Commit dc0a196

Browse filesBrowse files
committed
Restored functionality of setup/distribution as well as documentation generation
1 parent 46c8aee commit dc0a196
Copy full SHA for dc0a196

File tree

3 files changed

+5
-6
lines changed
Filter options

3 files changed

+5
-6
lines changed

‎MANIFEST.in

Copy file name to clipboardExpand all lines: MANIFEST.in
+2-2Lines changed: 2 additions & 2 deletions
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

Copy file name to clipboardExpand all lines: doc/source/conf.py
+1-1Lines changed: 1 addition & 1 deletion
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

Copy file name to clipboardExpand all lines: setup.py
+2-3Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,8 @@ def get_data_files(self):
7575
author_email = "byronimo@gmail.com",
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.