-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (34 loc) · 1.38 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
34
35
36
37
38
from distutils.core import setup
README = open('README', 'r').read()
setup(
name='carnifex',
version='0.2.6',
packages=['carnifex',
'carnifex.ssh',],
provides=['carnifex'],
requires=['Twisted'],
author='Geir Sporsheim',
author_email='[email protected]',
url='http://github.com/sporsh/carnifex',
license='MIT',
description="Execute commands and run processes locally and remote",
classifiers=[
'Programming Language :: Python',
'Development Status :: 3 - Alpha',
'Framework :: Twisted',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Internet',
'Topic :: Security',
'Topic :: System',
'Topic :: System :: Networking',
'Topic :: System :: Operating System',
'Topic :: System :: Systems Administration',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Terminals'
],
long_description=README
)