-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
19 lines (17 loc) · 832 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup as stsetup
if __name__ == "__main__":
# poission boltzmann solver
stsetup(name='DF_fitting',
packages=['fitting_scripts'],
version="0.2",
license='MIT',
description=('Fitting software for concentration profiles.'),
author="Amanuel Wolde-Kidan",
author_email="amanuel.wolde-kidan@fu-berlin.de",
include_package_data=True,
zip_safe=False,
requires=['numpy (>=1.10.4)', 'xlsxwriter (>=1.0.0)', 'matplotlib (>=2.2.2)', 'scipy (>=1.0.1)'],
install_requires=['numpy>=1.10.4', 'xlsxwriter>=1.0.0', 'matplotlib>=2.2.2', 'scipy>=1.0.1'],
entry_points={'console_scripts': ['DF_fitting=fitting_scripts.DF_fitting:main', ],},)