-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1006 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
35
36
#!/usr/bin/env python
import sys
from distutils.core import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
requirements = []
if sys.version_info[:2] == (2, 6):
requirements.append('argparse')
setup(
name='with-each-user',
version='0.9.2',
author='NetAngels',
author_email='[email protected]',
scripts=['with_each_user', ],
url='http://github.com/NetAngels/with-each-user',
license = 'BSD',
description = ('utility which helps to execute commands on behalf of all '
'users in the system in a row'),
long_description = read('README.rst'),
install_requires=requirements,
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Utilities',
)
)