2015-01-08 12:35:39 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
2016-07-04 18:15:31 +00:00
|
|
|
name = "QDSfit",
|
2015-01-08 12:35:39 +00:00
|
|
|
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/"
|
2015-01-08 12:35:39 +00:00
|
|
|
)
|