-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
30 lines (27 loc) · 911 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
import setuptools
with open('README.md') as readme_file:
readme = readme_file.read()
setuptools.setup(
name='tsudo',
python_requires='>3',
version='0.0.5',
author='Giovan Isa Musthofa',
author_email='[email protected]',
description='Tsundere wrapper for sudo command.',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/giovanism/tsudo',
license='WTFPL',
packages=setuptools.find_packages(),
scripts=('scripts/tsudo',),
install_requires=(
'pexpect',
),
classifiers=(
'Programming Language :: Python :: 3',
'Operating System :: Unix',
'Environment :: Console',
'Environment :: Plugins',
'Topic :: System :: Systems Administration',
),
)