-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (29 loc) · 949 Bytes
/
setup.py
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
# coding=utf-8
import os
from setuptools import setup
def read(fname):
"""
Utility function to read the README file. Used for the long_description.
:param fname:
:return:
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="bpmn_python",
version="0.0.3",
author="Izbela Smietana, Krzysztof Honkisz",
# author_email = "[email protected]",
description=("Python library that allows to import/export BPMN diagram (as an XML file) and provides a simple "
"visualization capabilities."),
license="GNU GENERAL PUBLIC LICENSE",
keywords=["bpmn", "xml"],
url="https://github.com/KrzyHonk/bpmn-python",
download_url="https://github.com/KrzyHonk/bpmn-python/tarball/0.0.3",
packages=['bpmn_python'],
install_requires=[
'networkx',
'matplotlib',
'pydotplus',
],
long_description=read('README.md'),
)