forked from truenas/midcli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 774 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (26 loc) · 774 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
from setuptools import find_packages, setup
try:
import fastentrypoints # noqa
except ImportError:
import sys
print("fastentrypoints module not found. entry points will be slower.", file=sys.stderr)
setup(
name='midcli',
description='NAS Command Line Interface',
packages=find_packages(),
license='BSD',
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': [
'cli = midcli.__main__:main',
'cli_console = midcli.__main__:main_console',
],
},
)