qdsfit/setup.py
Domink Demuth 5e76c419dc ParameterWidgets inside ScrollbarArea;
moved menus to .ui files;
removed some spaces and empty lines
2017-03-15 12:28:28 +01:00

21 lines
810 B
Python

from setuptools import setup, find_packages
setup(
name = "QDSfit",
version = "0.1",
packages = find_packages("src"),
author="Markus Rosenstihl",
author_email="markus.rosenstihl@physik.tu-darmstadt.de",
description="QDSfit is a program to fit Broadband Dielectric Data",
scripts = ["src/qds.py"],
package_dir = {'':'src'},
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['*.ui'],
# And include any *.msg files found in the 'hello' package, too:
'hello': ['*.msg'],
},
license="BSD",
url="https://chaos3.fkp.physik.tu-darmstadt.de/diffusion/QD/QDSfit/", requires=['matplotlib', 'numpy', 'pyqtgraph',
'scipy']
)