-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·41 lines (36 loc) · 1023 Bytes
/
setup.py
File metadata and controls
executable file
·41 lines (36 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
import setuptools
long_description = """
Meseq is a tool for generating sequence diagrams from a textual description.
Meseq has the following features:
- generate images in formats: PNG, SVG
- crossing messages
- lost message
- box of text on a life line
- create and destroy actors
- message to self
- colors
- utf-8 encoded messages
- resolve environment variables
More documentation here: https://goeb.github.io/meseq/
"""
setuptools.setup(
name='meseq',
version='1.1.998',
description='Editor of Message Sequence Diagrams',
long_description=long_description,
long_description_content_type="text/markdown",
author='Fred Hoerni',
author_email='fhoerni@free.fr',
url='https://github.com/goeb/meseq',
scripts=['meseq', 'meseqgui'],
requires=['cairo',
'pango',
'pangocairo',
'argparse',
'Tkinter',
'ScrolledText',
'tkFileDialog',
'tkMessageBox'
]
)