-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
68 lines (59 loc) · 2.39 KB
/
setup.py
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import find_packages, setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = []
with open('requirements.txt', 'r') as f:
requirements += [l for l in f.read().split('\n') if l.strip()]
# ## forked version of NeuroM. Works for local install, but not from PyPI.
# Since PyPI does not install non-PyPI hosted package.
# requirements +=[
# 'NeuroM @ git+https://github.com/ZeitgeberH/NeuroM@patchview#egg=NeuroM'
# ]
setup_requirements = ['pytest-runner']
test_requirements = ['pytest']
#with open('requirements_dev.txt', 'r') as f:
# dev_requirements = [l for l in f.read().split('\n') if l.strip()]
dev_requirements = []
setup(
author="Ming Hu",
author_email="[email protected]",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering :: Information Analysis',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering :: Information Analysis',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3.10',
"Operating System :: OS Independent",
],
description="Patchview perform data analysis and visualization on whole-cell recording data, including firing pattern analysis, event analysis, synatpic connection detection, morphorlocial analysis and more.",
install_requires=requirements,
extras_require={'dev': dev_requirements},
license="BSD-3-Clause",
long_description_content_type="text/x-rst",
long_description=readme,
include_package_data=True,
keywords='patchview',
name='patchview',
packages=find_packages(include=['patchview','patchview/Data',\
'patchview/HekaIO','patchview/utilitis']),
setup_requires=setup_requirements,
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/zeitgeberH/patchview',
version = "0.3.7",
zip_safe=False,
entry_points={
'gui_scripts': [
'patchview=patchview:pvGUI'
],
},
)