-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 1 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
# encoding=utf-8
from setuptools import setup
setup(
name='zzzfs',
version='0.1.2',
description='Dataset management à la ZFS',
long_description=open('README').read(),
author='Daniel W. Steinbrook',
author_email='steinbro@post.harvard.edu',
url='https://github.com/steinbro/zzzfs',
license="CDDL",
keywords='zfs',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: System :: Filesystems',
],
packages=['libzzzfs', 'libzzzfs.cmd'],
test_suite='tests',
entry_points={
'console_scripts': [
'zzzfs = libzzzfs.cmd.zzzfs:main',
'zzzpool = libzzzfs.cmd.zzzpool:main',
],
},
)