File: setup.py

package info (click to toggle)
pymca 4.7.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 52,352 kB
  • ctags: 9,570
  • sloc: python: 116,490; ansic: 18,322; cpp: 826; sh: 57; xml: 24; makefile: 19
file content (13 lines) | stat: -rw-r--r-- 330 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python
#encoding:latin-1

from distutils.core import setup
#from setuptools import setup

setup(name='py_nnma',
      version='2.1',
      description='Nonnegative matrix approximation',
      author='Uwe Schmitt',
      author_email='uschmitt@mineway.de',
      py_modules=['__init__', 'nnma']
     )