-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 883 Bytes
/
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
from setuptools import setup, find_packages
command = 'zfs-provisioner'
name = 'zfs_provisioner'
setup(
name=name,
version='0.1.0',
author='Steven Armstrong',
author_email='steven-%[email protected]' % name,
description='ZFS volume provisioner for kubernetes.',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX :: Linux',
],
packages=find_packages(),
include_package_data=True,
install_requires=[
'aiofiles',
'bitmath',
'click',
'inotipy',
'kopf',
'kubernetes',
'kubernetes_asyncio',
'pyyaml',
],
entry_points={
'console_scripts': [
'{command} = {name}.cli:main'.format(command=command, name=name)
],
},
)