-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·102 lines (86 loc) · 2.94 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#!/usr/bin/env python
"""
grappa-http
===========
HTTP assertion plugin for grappa
:copyright: (c) 2017 Tomas Aparicio
:license: MIT
"""
import os
import sys
import codecs
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
# Publish command
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup_requires = []
if 'test' in sys.argv:
setup_requires.append('pytest')
def read_version(package):
with open(os.path.join(package, '__init__.py'), 'r') as fd:
for line in fd:
if line.startswith('__version__ = '):
return line.split()[-1].strip().strip("'")
# Get package current version
version = read_version('grappa_http')
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = ['tests/']
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
with codecs.open('requirements-dev.txt', encoding='utf-8') as f:
tests_require = f.read().splitlines()
with codecs.open('requirements.txt', encoding='utf-8') as f:
install_requires = f.read().splitlines()
with codecs.open('README.rst', encoding='utf-8') as f:
readme = f.read()
with codecs.open('History.rst', encoding='utf-8') as f:
history = f.read()
setup(
name='grappa-http',
version=version,
author='Tomas Aparicio',
description=(
'HTTP assertion plugin for grappa'
),
url='https://github.com/grappa-py/http',
license='MIT',
long_description=readme + '\n\n' + history,
py_modules=['grappa_http'],
zip_safe=False,
tests_require=tests_require,
install_requires=install_requires,
packages=find_packages(exclude=['tests', 'examples']),
package_data={'': [
'LICENSE', 'README.rst', 'History.rst',
'requirements.txt', 'requirements-dev.txt'
]},
package_dir={'grappa_http': 'grappa_http'},
include_package_data=True,
cmdclass={'test': PyTest},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'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 :: 3.6',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
)