File: setup.py

package info (click to toggle)
python-nemu 0.2-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 280 kB
  • ctags: 440
  • sloc: python: 3,501; makefile: 62
file content (19 lines) | stat: -rwxr-xr-x 640 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: ts=4:sw=4:et:ai:sts=4

from distutils.core import setup, Extension, Command

setup(
        name        = 'nemu',
        version     = '0.2',
        description = 'A lightweight network emulator embedded in a small '
                      'python library.',
        author      = 'Martín Ferrari, Alina Quereilhac',
        author_email = 'martin.ferrari@gmail.com, aquereilhac@gmail.com',
        url         = 'http://code.google.com/p/nemu/',
        license     = 'GPLv2',
        platforms   = 'Linux',
        packages    = ['nemu'],
        package_dir = {'': 'src'}
        )