forked from spotify/python-graphwalker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 855 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
# -*- coding: utf-8 -*-
# Copyright (c) 2013 Spotify AB
from distutils.core import setup
setup(
name='graphwalker',
version='1.0.2',
maintainer='Anders Eurenius',
maintainer_email='aes@spotify.com',
packages=['graphwalker', 'graphwalker.test'],
package_data={'graphwalker.test': ['examples/*.*']},
scripts=['bin/graphwalker'],
url='http://pypi.python.org/pypi/graphwalker/',
license='LICENSE.txt',
description='Finite state machine based testing tool.',
long_description=open('README.txt').read(),
requires=["pydot(>=1.0.2)", "docopt"],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
],
)