Codebase list ansi / 47cab13
Update upstream source from tag 'upstream/0.1.5' Update to upstream version '0.1.5' with Debian dir 7822026fd4326433fb9b88f95b0f0fd98886764c Bastian Germann 3 years ago
5 changed file(s) with 24 addition(s) and 18 deletion(s). Raw diff Collapse all Expand all
00 Metadata-Version: 1.0
11 Name: ansi
2 Version: 0.1.3
2 Version: 0.1.5
33 Summary: ANSI cursor movement and graphics
44 Home-page: https://github.com/tehmaze/ansi/
55 Author: Wijnand Modderman-Lenstra
2323 boldcyan = bold + cyan
2424 boldwhite = bold + white
2525
26 # High intensity variants
27 brightblack = Graphic('100')
28 brightred = Graphic('101')
29 brightgreen = Graphic('102')
30 brightyellow = Graphic('103')
31 brightblue = Graphic('104')
32 brightmagenta = Graphic('105')
33 brightcyan = Graphic('106')
34 brightwhite = Graphic('107')
35
2636 # Convenience wrappers
2737 brown = yellow # Not in ANSI/ECMA-048 standard
2838 grey = white # Not in ANSI/ECMA-048 standard
2939 gray = white # US English
3040 darkgrey = boldblack
3141 darkgray = boldblack # US English
32 brightred = boldred
33 brightgreen = boldgreen
34 brightyellow = boldyellow
3542 brightbrown = boldyellow # Not in ANSI/ECMA-048 standard
36 brightblue = boldblue
37 brightmagenta = boldmagenta
38 brightcyan = boldcyan
39 brightwhite = boldwhite
4043 brightgrey = boldwhite # Not in ANSI/ECMA-048 standard
4144 brightgray = boldwhite # Us English
2424 boldcyan = bold + cyan
2525 boldwhite = bold + white
2626
27 # High intensity variants
28 brightblack = Graphic('90')
29 brightred = Graphic('91')
30 brightgreen = Graphic('92')
31 brightyellow = Graphic('93')
32 brightblue = Graphic('94')
33 brightmagenta = Graphic('95')
34 brightcyan = Graphic('96')
35 brightwhite = Graphic('97')
36
2737 # Convenience wrappers
2838 brown = yellow # Not in ANSI/ECMA-048 standard
2939 grey = white # Not in ANSI/ECMA-048 standard
3040 gray = white # US English
3141 darkgrey = boldblack
3242 darkgray = boldblack # US English
33 brightred = boldred
34 brightgreen = boldgreen
35 brightyellow = boldyellow
3643 brightbrown = boldyellow # Not in ANSI/ECMA-048 standard
37 brightblue = boldblue
38 brightmagenta = boldmagenta
39 brightcyan = boldcyan
40 brightwhite = boldwhite
4144 brightgrey = boldwhite # Not in ANSI/ECMA-048 standard
4245 brightgray = boldwhite # Us English
99 back = sequence('D')
1010 next_line = sequence('E')
1111 prev_line = sequence('F')
12 goto_x = sequence('H')
13 goto = sequence('G', 2)
12 goto_x = sequence('G')
13 goto = sequence('H', 2)
1414 erase = sequence('J')
1515 erase_data = erase
1616 erase_line = sequence('K')
22 from distutils.core import setup
33
44 setup(name='ansi',
5 version='0.1.3',
5 version='0.1.5',
66 description='ANSI cursor movement and graphics',
77 author='Wijnand Modderman-Lenstra',
88 author_email='maze@pyth0n.org',