-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 730 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 730 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
from setuptools import setup
setup(
name='mmdok-cli',
version='1.15',
description='Cli client for TinyDS',
url='https://github.com/emagnca/mmcli',
author='emagnca',
author_email='[email protected]',
license='BSD 2-clause',
packages=['mmcli'],
install_requires=['cmd2==1.5.0',
'requests==2.25.0',
'urllib3==1.26.2'],
entry_points={
'console_scripts': [
'mmcli=mmcli.mmcli:main',
'mmadmin=mmcli.mmadmin:main',
],
},
classifiers=[
'Development Status :: 1 - Planning',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3 :: Only'
],
)