-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathsetup.py
executable file
·69 lines (60 loc) · 2 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
from os import path
from codecs import open
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
def read_file(*names, **kwargs):
with open(
path.join(here, *names),
encoding=kwargs.get('encoding', 'utf8')
) as f:
return f.read()
def get_version():
version_file = read_file('jwplatform', 'version.py')
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError('Unable to find version string.')
setup(
name='jwplatform',
version=get_version(),
description='A Python client library for accessing JW Platform API',
long_description=read_file('README.rst') + '\n\n' + read_file('CHANGES.rst'),
url='https://github.com/jwplayer/jwplatform-py',
author='Kamil Sindi',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
],
keywords=['JW Platform', 'api', 'client', 'JW Player'],
packages=find_packages(exclude=['docs', 'tests', 'examples']),
include_package_data=True,
zip_safe=False,
install_requires=[
'requests>=2.24.0',
'neterr~=1.1.1',
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
'pytest-cov',
'responses>=0.12.0',
'networktest'
],
)