File: setup.py

package info (click to toggle)
python-extranormal3 0.0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 108 kB
  • sloc: python: 450; makefile: 3
file content (27 lines) | stat: -rw-r--r-- 719 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import os.path

#from distutils.core import setup
from setuptools import setup

version = '0.0.3'
packages = ['extranormal3']

#package_data = {'extranormal.addons': ['imgs/*']}
#scripts = [os.path.join('scripts', f) for f in ['ab_test.py']]

'''
if os.name != 'posix':  # windows
    scripts = [os.path.join('scripts', f) for f in ['test.py']]
'''

setup(name='extranormal3',
      version=version,
      description='Quick normalization of a bunch of Quick-EXAFS spectra',
      author='Olga Roudenko',
      author_email='olga.roudenko@synchrotron-soleil.fr',
      license='GPL >= v.3',
      platforms=['Linux', 'Windows'],
      packages=packages,
      #package_data=package_data,
      #scripts=scripts
      )