-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·32 lines (29 loc) · 1.02 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
28
29
30
31
32
#!/usr/bin/env python
from setuptools import find_packages, setup
with open("README.rst") as f:
long_description = f.read()
setup(
name="detox-bridge",
use_scm_version=True,
setup_requires=["setuptools_scm"],
description="A python bridge to the detox greybox testing library",
long_description=long_description,
long_description_content_type="text/x-rst",
author="Jan-Eric Duden",
author_email="jan-eric.duden@kpn.com",
url="https://github.com/kpn-digital/py-detox-bridge",
packages=find_packages(exclude=["tests*", "detox"]),
tests_require=["tox"],
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Internet :: WWW/HTTP",
],
)