-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 714 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
Setup.
"""
from setuptools import setup
setup(name='graph_stitcher',
version='0.0.20',
author='Thijs Metsch',
url='https://github.com/tmetsch/graph_stitcher',
description=('This tool is a little framework to determine possible'
'merges between two graphs based on a set of required'
'additional relationships (aka as stitches / edges).'),
license='MIT',
keywords='graph stitching algorithms framework',
packages=['stitcher'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'Topic :: Utilities'
])