forked from orenault/TestLink-API-Python-client
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (19 loc) · 634 Bytes
/
setup.py
File metadata and controls
24 lines (19 loc) · 634 Bytes
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 ??? , ???
#
# Licensed under ???
#
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, TestLink-API-Python-client developers',
author_email='???, ???, ???',
url='https://github.com/lczub/TestLink-API-Python-client',
license = 'unknown',
package_dir = {'': 'src'},
packages=['testlink'],
)