qdsfit/setup.py

21 lines
810 B
Python
Raw Permalink Normal View History

from setuptools import setup, find_packages
setup(
2016-07-04 18:15:31 +00:00
name = "QDSfit",
version = "0.1",
2016-07-04 18:15:31 +00:00
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']
)