forked from h2non/pook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
107 lines (91 loc) · 3.15 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
103
104
105
106
107
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
pook
====
Versatile HTTP traffic mocking and expectations made easy in Python.
:copyright: (c) 2016-2020 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):
init_path = os.path.join(package, '__init__.py')
with open(init_path, 'r') as fd:
for line in fd:
if line.startswith('__version__ = '):
return line.split()[-1].strip().strip("'")
# Get package current version
version = read_version('pook')
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='pook',
version=version,
author='Tomas Aparicio',
author_email='[email protected]',
description=(
'HTTP traffic mocking and expectations made easy'
),
url='https://github.com/h2non/pook',
license='MIT',
long_description=readme + '\n\n' + history,
long_description_content_type='text/x-rst',
py_modules=['pook'],
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
packages=find_packages(exclude=['tests', 'examples', 'docs']),
package_data={'': [
'LICENSE', 'README.rst', 'History.rst',
'requirements.txt', 'requirements-dev.txt'
]},
package_dir={'pook': 'pook'},
include_package_data=True,
cmdclass={'test': PyTest},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
)