-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.37 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.37 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
tests_require = ['nose', 'flake8', 'flake8-bugbear', 'flake8-comprehensions', 'flake8-requirements']
setup(name='zfitpy',
version='0.6.2',
author='Michael Hayes',
author_email='michael.hayes@canterbury.ac.nz',
description='Electrical model fitting to impedance data',
long_description = long_description,
long_description_content_type="text/markdown",
url='https://github.com/mph-/zfitpy',
download_url='https://github.com/mph-/zfitpy',
install_requires=['matplotlib',
'numpy',
'scipy',
'lcapy',
'setuptools',
],
python_requires='>=3.6',
extras_require={
'test': tests_require,
'doc': ['sphinx', 'ipython'],
'release': ['wheel', 'twine'],
},
tests_require=tests_require,
packages=find_packages(),
entry_points={
'console_scripts': [
'zfitpy=zfitpy.scripts.zfitpy:main',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent",
],
)