File: setup.py

package info (click to toggle)
norm 1.5.9%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,680 kB
  • sloc: cpp: 123,494; xml: 7,536; tcl: 5,460; makefile: 3,442; python: 1,898; java: 1,750; ansic: 642; sh: 21; csh: 8
file content (12 lines) | stat: -rw-r--r-- 472 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
# This Python script can be used to install the Python 'pynorm' package
import platform
from distutils.core import setup, Extension

# Note to use 'pynorm", you will need to have the libnorm shared library
# (libnorm.so or libnorm.dylib, etc) installed where your Python  installation
# will find it with dlopen() (e.g. /usr/local/lib or something)

setup(name='pynorm', 
      version = '1.0',
      packages = ['pynorm', 'pynorm.extra'],
      package_dir={'' : 'src'})