-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 735 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 735 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
from setuptools import setup
with open("README.md") as f:
readme = f.read()
setup(
name="blkmenu",
version="0.3.1",
description="Tiny curses wrapper around lsblk and udisksctl",
long_description=readme,
long_description_content_type="text/markdown",
license="MIT",
author="Giacomo Comitti",
author_email="dev@gcomit.com",
url="https://github.com/gcmt/blkmenu",
data_files=[("man/man1", ["blkmenu.1"])],
scripts=["blkmenu"],
python_requires='>=3.6',
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Environment :: Console",
"Topic :: Utilities",
],
)