-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (58 loc) · 1.9 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
from setuptools import setup
import cbcmgr
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='cbcmgr',
version=cbcmgr.__version__,
packages=['cbcmgr', 'cbcmgr.cli', 'cbcmgr.api'],
url='https://github.com/mminichino/cb-util',
license='MIT License',
author='Michael Minichino',
python_requires='>=3.8',
entry_points={
'console_scripts': [
'cbcutil = cbcmgr.cli.cbcutil:main',
'caputil = cbcmgr.cli.caputil:main',
'sgwutil = cbcmgr.cli.sgwutil:main',
]
},
package_data={'cbcmgr': ['data/*']},
install_requires=[
"attrs>=22.2.0",
"couchbase>=4.2.1",
"dnspython>=2.3.0",
"docker>=5.0.3",
"pytest>=7.0.1",
"pytest-asyncio>=0.16.0",
"requests>=2.31.0",
"urllib3>=2.2.1",
"xmltodict>=0.13.0",
"bumpversion>=0.6.0",
"overrides>=7.4.0",
"Jinja2==3.1.2",
"pandas>=1.5.3",
"numpy>=1.24.3",
"pillow>=8.4.0",
"aiohttp>=3.9.1",
"python-certifi-win32>=1.6.1",
"certifi>=2023.7.22",
"setuptools>=65.5.1"
],
author_email='info@unix.us.com',
description='Couchbase connection manager',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=["couchbase", "nosql", "pycouchbase", "database"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Database",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"],
)