Skip to content

Commit 7cb3fd1

Browse files
author
Lukasz Balcerzak
committed
Updated package metadata
--HG-- branch : web
1 parent 2a13f18 commit 7cb3fd1

File tree

5 files changed

+51
-4
lines changed

5 files changed

+51
-4
lines changed

README.rst

Lines changed: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,48 @@
22
VCS
33
===
44

5-
Various Version Control System management abstraction layer for Python.
5+
various version control system management abstraction layer for python.
66

7+
------------
78
Introduction
89
------------
910

10-
TODO: To be written...
11+
``vcs`` is abstraction layer over various version control systems. It is
12+
designed as feature-rich Python_ library with clean *API*.
13+
14+
.. warning::
15+
This library is at early-development *ALPHA* stage.
16+
17+
.. note::
18+
Currently only Mercurial_ backend is being developed. Git_ is going to be
19+
second backend.
20+
21+
**Features**
22+
23+
- Common *API* for SCM backends
24+
25+
**Incoming**
26+
27+
- Django_ app for mercurial_ hgserve replacement
28+
- Command line client
29+
30+
-------------
31+
Documentation
32+
-------------
33+
34+
Online documentation for development version is available at
35+
http://packages.python.org/vcs/.
36+
37+
You may also build documentation for yourself - go into ``docs/`` and run::
38+
39+
make html
40+
41+
.. note::
42+
In order to build documentation you would need Sphinx_.
43+
44+
.. _python: http://www.python.org/
45+
.. _Django: http://www.djangoproject.com/
46+
.. _Sphinx: http://sphinx.pocoo.org/
47+
.. _mercurial: http://mercurial.selenic.com/
48+
.. _git: http://git-scm.com/
1149

docs/quickstart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ There is no need to import everything from ``vcs`` - in fact, all you'd need is
3737
to import ``get_repo``, at least for now. Then, simply initialize repository
3838
object by providing it's type and path.
3939

40-
.. code-block:: python
40+
.. code-block:: pycon
4141
4242
>>> from vcs import get_repo
4343
>>>

examples/django_simplehgwiki/hgwiki/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class Wiki(models.Model):
1111
slug = models.SlugField(unique=True)
1212
repository = models.ForeignKey(Repository)
1313
content = models.TextField(default='')
14+
#private = models.BooleanField(default=True)
1415

1516
class Meta:
1617
ordering = ('title',)

setup.cfg

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[build_sphinx]
2+
source-dir = docs/
3+
build-dir = docs/build
4+
all_files = 1
5+
6+
[upload_sphinx]
7+
upload-dir = docs/build/html
8+

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
version = VERSION,
1717
url = 'http://bitbucket.org/marcinkuzminski/vcs/',
1818
author = 'Marcin Kuzminski, Lukasz Balcerzak',
19-
author_email = 'marcinkuzminski@gmail.com',
19+
author_email = 'marcin@python-blog.com',
2020
description = vcs.__doc__,
2121
long_description = long_description,
2222
zip_safe = False,

0 commit comments

Comments
 (0)