forked from volkerp/zfstui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (24 loc) · 891 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
import setuptools
with open('README.md', 'r') as f:
long_description = '\n' + f.read()
setuptools.setup(
name = "zfstui",
version = "0.1.1",
author = "Volker Poplawski",
author_email = "volker@openbios.org",
description = "terminal user interface for the ZFS filesystem",
long_description=long_description,
long_description_content_type='text/markdown',
url = "http://github.com/volkerp/zfstui",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Environment :: Console :: Curses",
"Intended Audience :: System Administrators",
"Topic :: System :: Filesystems"
],
packages = setuptools.find_packages(),
scripts = ['bin/zfstui'],
)