forked from heynemann/pyccuracy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
79 lines (72 loc) · 2.59 KB
/
setup.py
File metadata and controls
79 lines (72 loc) · 2.59 KB
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
72
73
74
75
76
77
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2010 Rafael Marques Martins <snit.ram@gmail.com>
#
# This software is based in Pyccuracy (www.pyccuracy.org), wich is also
# licensed under Open Software License ("OSL") v. 3.0 (the "License")
#
# 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.
from setuptools import setup, find_packages
README = open('README.rst').read()
import extasy
setup(
name = 'extasy',
version = extasy.Version,
description = "EXTasy is a BDD framework bult on top of PyCukes for ExtJS interfaces",
long_description=README,
keywords = 'bdd behaviour behavior pyhistorian story',
author = 'EXTasy team',
author_email = 'snit.ram@gmail.com',
url = '',
license = 'OSI',
classifiers = ['Development Status :: 4 - Beta',
'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',],
include_package_data = True,
packages = [
'extasy',
'extasy.lang',
'extasy.selenium',
'extasy.step_definitions',
],
package_dir = {
'extasy': 'extasy',
'extasy.lang': 'extasy/lang',
'extasy.selenium': 'extasy/selenium',
'extasy.step_definitions': 'extasy/step_definitions',
},
package_data = {
'extasy.lang': ['*.story']
},
zip_safe=False,
install_requires=[
'story_parser>=0.1.2',
'should_dsl',
'termcolor',
'pyhistorian>=0.6.8',
'pycukes',
'selenium'
],
entry_points= {
'console_scripts': ['extasy = extasy.console:main']},
)