-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
27 lines (26 loc) · 1.01 KB
/
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
import setuptools
setuptools.setup(
name="behave-pandas",
version="1.0.0-dev",
url="https://github.com/clembou/behave-pandas",
author="Clément Bouscasse",
author_email="clement.bouscasse@gmail.com",
description="Provides helper functions to help converting behave tables into pandas dataframes and vice versa.",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=["behave", "pandas>=0.21", "tabulate"],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
license="MIT",
keywords="behave pandas testing bdd",
python_requires=">=3.6",
)