forked from cucumber/gherkin-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (19 loc) · 829 Bytes
/
setup.py
File metadata and controls
19 lines (19 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# coding: utf-8
from distutils.core import setup
setup(name='gherkin-official',
packages=['gherkin', 'gherkin.pickles', 'gherkin.stream'],
version='5.0.0',
description='Gherkin parser (official, by Cucumber team)',
author='Cucumber Ltd and Björn Rasmusson',
author_email='cukes@googlegroups.com',
url='https://github.com/cucumber/gherkin-python',
license='MIT',
download_url='https://github.com/cucumber/gherkin-python/archive/v5.0.0.tar.gz',
keywords=['gherkin', 'cucumber', 'bdd'],
scripts=['bin/gherkin'],
classifiers=['Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
package_data={'gherkin': ['gherkin-languages.json']},
)