-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathsetup.py
60 lines (51 loc) · 1.81 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
# -*- coding: utf-8 -*-
import codecs
import os
import re
from setuptools import setup, find_packages
def read(*parts):
filename = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(filename, encoding='utf-8') as fp:
return fp.read()
def find_version(*file_paths):
version_file = read(*file_paths)
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 = 'yarn-api-client',
version = find_version('yarn_api_client', '__init__.py'),
description='Python client for Hadoop® YARN API',
long_description=read('README.md'),
long_description_content_type='text/markdown',
packages = find_packages(exclude=['tests','itests']),
install_requires = [
'requests>=2.7,<3.0',
],
entry_points = {
'console_scripts': [
'yarn_client = yarn_api_client.main:main',
],
},
tests_require = ['mock', 'flake8'],
test_suite = 'tests',
author = 'Iskandarov Eduard',
author_email = '[email protected]',
maintainer = 'Dmitry Romanenko',
maintainer_email = '[email protected]',
license = 'BSD',
url = 'https://github.com/CODAIT/hadoop-yarn-api-python-client',
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'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',
'Topic :: System :: Distributed Computing',
],
)