-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 693 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(
name='screenutils',
version='0.0.1.6.2',
packages=['screenutils',],
license='GNU Public License >=2 (ask me if you want other)',
author="Christophe Narbonne",
author_email="@Christophe31",
url="http://github.com/Christophe31/screenutils",
description =
"lib for gnu-screen: creates/close/list/log sessions, injects commands...",
classifiers = [
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description=open('README.rst').read(),
)