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

Commit a182352

Browse files
committed
Added setup.py script which should allow easy-installation
1 parent 48541d2 commit a182352

File tree

5 files changed

+38
-1
lines changed

5 files changed

+38
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
MANIFEST
2+
build/
3+
dist/
14
*.pyc
25
*.o
36
*.so

MANIFEST.in

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
include VERSION
2+
include LICENSE
3+
include CHANGES
4+
include AUTHORS
5+
include README
6+
7+
graft test
8+
9+
global-exclude .git*
10+
global-exclude *.pyc
11+
global-exclude *.so
12+
global-exclude *.dll
13+
global-exclude *.o

README

-1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,4 @@ http://byronimo.lighthouseapp.com/projects/51787-gitpython
3535

3636
LICENSE
3737
=======
38-
3938
New BSD License

doc/source/intro.rst

+6
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,11 @@ The latest source can be cloned using git from one of the following locations:
3636

3737
* git://gitorious.org/git-python/async.git
3838
* git://github.com/Byron/async.git
39+
40+
41+
License Information
42+
===================
43+
*Async* is licensed under the New BSD License.
44+
3945

4046
.. _setuptools: http://peak.telecommunity.com/DevCenter/setuptools

setup.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env python
2+
from distutils.core import setup, Extension
3+
4+
setup(name = "async",
5+
version = "0.6.0",
6+
description = "Async Framework",
7+
author = "Sebastian Thiel",
8+
author_email = "[email protected]",
9+
url = "http://gitorious.org/git-python/async",
10+
packages = ('async', 'async.mod', 'async.test', 'async.test.mod'),
11+
package_data={'async' : ['AUTHORS', 'README']},
12+
package_dir = {'async':''},
13+
ext_modules=[Extension('async.mod.zlib', ['mod/zlibmodule.c'])],
14+
license = "BSD License",
15+
long_description = """Async is a framework to process interdependent tasks in a pool of workers"""
16+
)

0 commit comments

Comments
 (0)