-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
executable file
·43 lines (36 loc) · 1.22 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
from setuptools import *
with open('README.md', encoding="utf8") as f:
long_description = f.read()
setup(
name='jsl-pathfinder',
version='1.3.5',
description='Morris Water Maze Search Strategy Analysis',
url='https://github.com/MatthewBCooke/Pathfinder',
author='Matthew Cooke',
author_email='[email protected]',
license='GNU',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Topic :: Scientific/Engineering :: Information Analysis',
'Programming Language :: Python :: 3.5',
],
keywords='morris water maze jason snyder lab search strategy strategies analysis',
packages=find_packages(),
install_requires=[
'xlrd == 1.2.0',
'plotly',
'pillow',
'matplotlib',
'scipy',
],
long_description=long_description,
long_description_content_type='text/markdown',
entry_points={
'gui_scripts': [
'pathfinder = SearchStrategyAnalysis.Pathfinder:main',
],
}
)