forked from lczub/TestLink-API-Python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (19 loc) · 737 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
#! /usr/bin/python
# -*- coding: UTF-8 -*-
# Copyright 2012-2013 Luiko Czub, TestLink-API-Python-client developers
#
# Licensed under Apache 2.0
#
from os.path import join, dirname
from distutils.core import setup
execfile(join(dirname(__file__), 'src', 'testlink', 'version.py'))
setup(name='TestLink',
version=VERSION,
description='Python XMLRPC client for the TestLink API',
author='James Stock, Olivier Renault, Luiko Czub, TestLink-API-Python-client developers',
author_email='[email protected], [email protected]',
url='https://github.com/lczub/TestLink-API-Python-client',
license = 'Apache 2.0',
package_dir = {'': 'src'},
packages=['testlink'],
)