forked from cucumber/gherkin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (21 loc) · 900 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# coding: utf-8
from distutils.core import setup
setup(name="gherkin-official",
packages=["gherkin", "gherkin.pickles", "gherkin.stream"],
version="26.0.1",
description="Gherkin parser (official, by Cucumber team)",
long_description="Gherkin parser (official, by Cucumber team)",
author="Cucumber Ltd and Björn Rasmusson",
author_email="[email protected]",
url="https://github.com/cucumber/gherkin",
license="MIT",
download_url="http://pypi.python.org/pypi/gherkin-official",
keywords=["gherkin", "cucumber", "bdd"],
scripts=["bin/gherkin"],
classifiers=["Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
platforms = ['any'],
package_data={"gherkin": ["gherkin-languages.json"]},
)