-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 924 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 924 Bytes
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
from setuptools import setup
setup(
name='immudb_wrapper',
version='0.1.8',
author='Daniil Anfimov',
author_email='anfimovdan@gmail.com',
description=(
'The wrapper around the SDK client immudb-py from project Codenotary, '
'which expands the functionality of the original client '
'with additional functions.'
),
url='https://github.com/AlmaLinux/immudb-wrapper',
project_urls={
'Bug Tracker': 'https://github.com/AlmaLinux/immudb-wrapper/issues',
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: '
'GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
],
py_modules=['immudb_wrapper'],
scripts=['immudb_wrapper.py'],
install_requires=[
'GitPython>=3.1.20',
'immudb-py>=1.4.0',
],
python_requires='>=3.7',
)