-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
98 lines (93 loc) · 3.44 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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
'''
Module
setup.py
Copyright
Copyright (C) 2019 - 2024 Vladimir Roncevic <[email protected]>
gen_rpc is free software: you can redistribute it and/or
modify it under the terms of the GNU General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
gen_rpc is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program. If not, see <http://www.gnu.org/licenses/>.
Info
Defines setup for tool gen_rpc.
'''
from __future__ import print_function
from typing import List, Optional
from os.path import abspath, dirname, join
from setuptools import setup
__author__ = 'Vladimir Roncevic'
__copyright__ = '(C) 2024, https://vroncevic.github.io/gen_rpc'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__ = 'https://github.com/vroncevic/gen_rpc/blob/dev/LICENSE'
__version__ = '1.0.3'
__maintainer__ = 'Vladimir Roncevic'
__email__ = '[email protected]'
__status__ = 'Updated'
TOOL_DIR: str = 'gen_rpc/'
CONF: str = 'conf'
TEMPLATE: str = 'conf/template'
LOG: str = 'log'
THIS_DIR: str = abspath(dirname(__file__))
long_description: Optional[str] = None
with open(join(THIS_DIR, 'README.md'), encoding='utf-8') as readme:
long_description = readme.read()
PROGRAMMING_LANG: str = 'Programming Language :: Python ::'
VERSIONS: List[str] = ['3.10', '3.11']
SUPPORTED_PY_VERSIONS: List[str] = [
f'{PROGRAMMING_LANG} {VERSION}' for VERSION in VERSIONS
]
LICENSE_PREFIX: str = 'License :: OSI Approved ::'
LICENSES: List[str] = [
'GNU Lesser General Public License v2 (LGPLv2)',
'GNU Lesser General Public License v2 or later (LGPLv2+)',
'GNU Lesser General Public License v3 (LGPLv3)',
'GNU Lesser General Public License v3 or later (LGPLv3+)',
'GNU Library or Lesser General Public License (LGPL)'
]
APPROVED_LICENSES: List[str] = [
f'{LICENSE_PREFIX} {LICENSE}' for LICENSE in LICENSES
]
PYP_CLASSIFIERS: List[str] = SUPPORTED_PY_VERSIONS + APPROVED_LICENSES
setup(
name='gen_rpc',
version='1.0.3',
description='Generating RPC modules',
author='Vladimir Roncevic',
author_email='[email protected]',
url='https://vroncevic.github.io/gen_rpc',
license='GPL 2024 Free software to use and distributed it.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='Unix, Linux, Development, RPC, Modules',
platforms='POSIX',
classifiers=PYP_CLASSIFIERS,
packages=['gen_rpc', 'gen_rpc.pro'],
install_requires=['ats-utilities'],
package_data={
'gen_rpc': [
'py.typed',
f'{CONF}/gen_rpc.logo',
f'{CONF}/gen_rpc.logo',
f'{CONF}/gen_rpc.cfg',
f'{CONF}/gen_rpc_util.cfg',
f'{CONF}/project.yaml',
f'{TEMPLATE}/template_xdr_rpc.yaml',
f'{TEMPLATE}/rpc_client.template',
f'{TEMPLATE}/rpc_server.template',
f'{TEMPLATE}/rpc_square.template',
f'{LOG}/gen_rpc.log'
]
},
data_files=[(
'/usr/local/bin/', [
f'{TOOL_DIR}run/gen_rpc_run.py'
]
)]
)