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

Commit 7562fdd

Browse files
committed
added setup.py and Manifest to allow distribution and easy_install
1 parent 07b8699 commit 7562fdd

File tree

6 files changed

+50
-2
lines changed

6 files changed

+50
-2
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

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

README

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
GtDB
1+
GitDB
22
=====
33

44
GitDB allows you to access bare git repositories for reading and writing. It

doc/source/intro.rst

+12
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,16 @@ Getting Started
2626
===============
2727
It is advised to have a look at the :ref:`Usage Guide <tutorial-label>` for a brief introduction on the different database implementations.
2828

29+
=================
30+
Source Repository
31+
=================
32+
The latest source can be cloned using git from one of the following locations:
33+
34+
* git://gitorious.org/git-python/gitdb.git
35+
* git://github.com/Byron/gitdb.git
36+
37+
License Information
38+
===================
39+
*GitDB* is licensed under the New BSD License.
40+
2941
.. _setuptools: http://peak.telecommunity.com/DevCenter/setuptools

ext/async

Submodule async updated from 796b5e9 to a182352

setup.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/usr/bin/env python
2+
from distutils.core import setup, Extension
3+
4+
setup(name = "gitdb",
5+
version = "0.5.0",
6+
description = "Git Object Database",
7+
author = "Sebastian Thiel",
8+
author_email = "byronimo@gmail.com",
9+
url = "http://gitorious.org/git-python/gitdb",
10+
packages = ('gitdb', 'gitdb.db', 'gitdb.test', 'gitdb.test.db', 'gitdb.test.performance'),
11+
package_data={'gitdb' : ['AUTHORS', 'README'],
12+
'gitdb.test' : ['fixtures/packs/*', 'fixtures/objects/7b/*']},
13+
package_dir = {'gitdb':''},
14+
ext_modules=[Extension('gitdb._fun', ['_fun.c'])],
15+
license = "BSD License",
16+
requires=('async (>=0.6.0)',),
17+
long_description = """GitDB is a pure-Python git object database"""
18+
)

0 commit comments

Comments
 (0)