forked from getslash/backslash-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 982 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
27
28
29
30
31
32
33
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), "backslash", "__version__.py")) as version_file:
exec(version_file.read()) # pylint: disable=W0122
_INSTALL_REQUIRES = [
"munch",
"requests",
"sentinels",
"URLObject",
]
setup(name="backslash",
classifiers = [
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
],
description="Client library for the Backslash test reporting service",
license="BSD3",
author="Rotem Yaari",
author_email="vmalloc@gmail.com",
version=__version__, # pylint: disable=E0602
packages=find_packages(exclude=["tests"]),
url="https://github.com/vmalloc/backslash-python",
install_requires=_INSTALL_REQUIRES,
scripts=[],
namespace_packages=[]
)