|
45 | 45 |
|
46 | 46 |
|
47 | 47 | ld = """ |
48 | | -Gitless is an experimental version control system built on top of Git. |
49 | | -Many people complain that Git is hard to use. We think the problem lies |
50 | | -deeper than the user interface, in the concepts underlying Git. Gitless |
51 | | -is an experiment to see what happens if you put a simple veneer on an |
52 | | -app that changes the underlying concepts. Because Gitless is implemented |
53 | | -on top of Git (could be considered what Git pros call a \"porcelain\" of |
54 | | -Git), you can always fall back on Git. And of course your coworkers you |
55 | | -share a repo with need never know that you're not a Git aficionado. |
| 48 | +Gitless is a version control system built on top of Git, that is easy to learn |
| 49 | +and use. It features a simple commit workflow, independent branches, and |
| 50 | +a friendly command-line interface. Because Gitless is implemented on top of |
| 51 | +Git, you can always fall back on Git. And your coworkers you share a repo with |
| 52 | +need never know that you're not a Git aficionado. |
56 | 53 |
|
57 | 54 | More info, downloads and documentation @ `Gitless's |
58 | 55 | website <http://gitless.com>`__. |
|
61 | 58 | setup( |
62 | 59 | name='gitless', |
63 | 60 | version=version, |
64 | | - description='A version control system built on top of Git', |
| 61 | + description='A simple version control system built on top of Git', |
65 | 62 | long_description=ld, |
66 | 63 | author='Santiago Perez De Rosso', |
67 | 64 | author_email='sperezde@csail.mit.edu', |
68 | | - url='http://gitless.com', |
| 65 | + url='https://gitless.com', |
69 | 66 | packages=['gitless', 'gitless.cli'], |
70 | 67 | install_requires=[ |
71 | 68 | # make sure install_requires is consistent with requirements.txt |
|
0 commit comments