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

Commit 89790ab

Browse files
committed
Merge branch 'structure'
2 parents eccf3d6 + dc0a196 commit 89790ab

26 files changed

+9
-12
lines changed

MANIFEST.in

Lines 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

README renamed to README.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ SOURCE
1818
======
1919
The source is available in a git repository at gitorious and github:
2020

21-
git://gitorious.org/git-python/async.git
22-
git://github.com/Byron/async.git
21+
git://github.com/gitpython-developers/async.git
2322

2423
Run the tests with
2524
cd async
@@ -31,7 +30,7 @@ http://groups.google.com/group/git-python
3130

3231
ISSUE TRACKER
3332
=============
34-
http://byronimo.lighthouseapp.com/projects/51787-gitpython
33+
https://github.com/gitpython-developers/async/issues
3534

3635
LICENSE
3736
=======
File renamed without changes.
File renamed without changes.

graph.py renamed to async/graph.py

File renamed without changes.
File renamed without changes.
File renamed without changes.

pool.py renamed to async/pool.py

File renamed without changes.

task.py renamed to async/task.py

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

util.py renamed to async/util.py

File renamed without changes.

doc/source/conf.py

Lines 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

doc/source/intro.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@ It is advised to have a look at the :ref:`Usage Guide <tutorial-label>` for a br
3232
=================
3333
Source Repository
3434
=================
35-
The latest source can be cloned using git from one of the following locations:
35+
The latest source can be cloned using git from github:
3636

37-
* git://gitorious.org/git-python/async.git
38-
* git://github.com/Byron/async.git
37+
* git://github.com/gitpython-developers/async.git
3938

4039

4140
License Information

setup.py

Lines 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)