-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (52 loc) · 1.87 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
import codecs
from setuptools import setup
def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(file_path, encoding='utf-8').read()
version_file = read('pytest_gi/__init__.py')
version = re.search(
r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file,
re.M).group(1)
setup(
name='pytest-ghostinspector',
version=version,
author='Jay Luker',
author_email='[email protected]',
license='MIT',
url='https://github.com/harvard-dce/pytest-ghostinspector',
description='For finding/executing Ghost Inspector tests',
long_description=read('README.md'),
py_modules=['pytest_gi.plugin'],
install_requires=['pytest>=2.8.1', 'requests>=2.7', 'pyyaml'],
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Utilities',
'Topic :: Software Development :: Testing'
],
keywords=['pytest', 'py.test', 'ghostinspector'],
entry_points={
'pytest11': [
'ghostinspector = pytest_gi.plugin',
],
},
)