File: setup.py

package info (click to toggle)
python-ipcalc 0.3-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 68 kB
  • ctags: 44
  • sloc: python: 418; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 513 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

from distutils.core import setup

long_description = '''
This module allows you to perform IP subnet calculations, there is support
for both IPv4 and IPv6 CIDR notation.
'''

setup(name='ipcalc',
      version='0.3',
      description='IP subnet calculator',
      long_description=long_description,
      author='Wijnand Modderman',
      author_email='python@tehmaze.com',
      url='http://dev.tehmaze.com/projects/ipcalc',
      packages = [''],
      package_dir = {'': 'src'},
     )