1 # |
1 # |
2 # Jasy - Web Tooling Framework |
2 # Jasy - Web Tooling Framework |
3 # Copyright 2010-2012 Zynga Inc. |
3 # Copyright 2010-2012 Zynga Inc. |
4 # Copyright 2013 Sebastian Werner |
4 # Copyright 2013-2014 Sebastian Werner |
5 # |
5 # |
6 |
6 |
7 """ |
7 """ |
8 **Jasy - Web Tooling Framework** |
8 **Jasy - Web Tooling Framework** |
9 |
9 |
10 Jasy is a powerful Python3-based tooling framework. |
10 Jasy is a powerful Python3-based tooling framework. |
11 It makes it easy to manage heavy web projects. |
11 It makes it easy to manage heavy web projects. |
12 Its main goal is to offer an API which could be used by developers to write their |
12 Its main goal is to offer an API which could be used by developers to write |
13 custom build/deployment scripts. |
13 their custom build/deployment scripts. |
14 """ |
14 """ |
15 |
15 |
16 from __future__ import unicode_literals |
16 from __future__ import unicode_literals |
17 |
17 |
18 __version__ = "1.1.0" |
18 __version__ = "1.5-beta5" |
19 __author__ = "Sebastian Werner <info@sebastian-werner.net>" |
19 __author__ = "Sebastian Werner <info@sebastian-werner.net>" |