-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
73 lines (62 loc) · 2.74 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# -*- coding: utf-8 -*-
# Licensed under the Open Software License ("OSL") v. 3.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.opensource.org/licenses/osl-3.0.php
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
from setuptools import setup
from pyccuracy import Version
def find_packages():
''' Pyccuracy`s own find_packages is being used to avoid setuptools`
find_package - which contains a monkey patch that may cause crashes
when installing in some operating systems.'''
modules = []
pycc_path = os.path.dirname(os.path.abspath(__file__)) + '/pyccuracy'
for root, dirs, files in os.walk(pycc_path):
modules.append(root.replace(pycc_path, 'pyccuracy').replace('/', '.'))
return modules
setup(
name = 'Pyccuracy',
version = Version,
description = "Pyccuracy is a BDD style Acceptance Testing framework",
long_description = """Pyccuracy is a Behavior-Driven Acceptance Testing framework (more on http://www.pyccuracy.org).""",
keywords = 'Acceptance Testing Accuracy Behavior Driven Development',
author = 'Pyccuracy team',
author_email = '[email protected]',
url = 'http://www.pyccuracy.org',
license = 'OSI',
classifiers = ['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Natural Language :: English',
'Natural Language :: Portuguese (Brazilian)',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',],
packages = find_packages(),
package_dir = {"pyccuracy": "pyccuracy"},
include_package_data = True,
package_data = {
'': ['*.template'],
'pyccuracy.languages.data': ['*.txt'],
'pyccuracy.xslt': ['*.xslt'],
},
install_requires=[
"selenium",
],
entry_points = {
'console_scripts': [
'pyccuracy_console = pyccuracy.pyccuracy_console:console',
'pyccuracy_help = pyccuracy.pyccuracy_help:console',
],
},
)