|
13 | 13 | # Module name (lowercase) |
14 | 14 | name='pcpostprocess', |
15 | 15 | version='0.0.1', |
16 | | - description='Export high-throughput patch-clamp data from the Nanion SyncroPatch', |
| 16 | + description='Post-process patch clamp recordings with the staircase protocol', |
17 | 17 | long_description=readme, |
18 | 18 | long_description_content_type="text/markdown", |
19 | | - author='Frankie Patten-Elliot, Joseph Shuttleworth, Chon Lok Lei', |
| 19 | + author='Frankie Patten-Elliot, Joseph Shuttleworth, Chon Lok Lei, Michael Clerx', |
20 | 20 | author_email='joseph.shuttleworth@nottingham.ac.uk', |
21 | 21 | maintainer='Joseph Shuttleworth', |
22 | 22 | maintainer_email='joseph.shuttleworth@nottingham.ac.uk', |
23 | | - # url='https://github.com/CardiacModelling/markov-builder', |
| 23 | + url='https://github.com/CardiacModelling/pcpostprocess', |
24 | 24 | classifiers=[ |
25 | | - "Programming Language :: Python :: 3", |
26 | | - "License :: OSI Approved :: BSD License", |
27 | | - "Operating System :: OS Independent", |
| 25 | + 'Programming Language :: Python :: 3', |
| 26 | + 'License :: OSI Approved :: BSD License', |
| 27 | + 'Operating System :: OS Independent', |
28 | 28 | ], |
29 | 29 |
|
30 | 30 | # Packages to include |
|
35 | 35 | include_package_data=True, |
36 | 36 |
|
37 | 37 | # Required Python version |
38 | | - python_requires='>=3.7', |
| 38 | + python_requires='>=3.10', |
39 | 39 |
|
40 | 40 | # List of dependencies |
41 | 41 | install_requires=[ |
|
44 | 44 | 'matplotlib>=3.4', |
45 | 45 | 'pandas>=1.3', |
46 | 46 | 'regex>=2023.12.25', |
47 | | - 'openpyxl>=3.1.2', |
48 | | - 'jinja2>=3.1.0', |
49 | | - 'seaborn>=0.12.2' |
| 47 | + 'seaborn>=0.12.2', |
| 48 | + 'openpyxl>=3.1.2', # Used via pandas (to create excel doc) |
| 49 | + 'jinja2>=3.1.0', # Used via pandas (to create latex doc) |
50 | 50 | ], |
51 | 51 | extras_require={ |
52 | 52 | 'test': [ |
53 | 53 | 'pytest-cov>=2.10', # For coverage checking |
54 | 54 | 'pytest>=4.6', # For unit tests |
55 | 55 | 'flake8>=3', # For code style checking |
56 | 56 | 'isort', |
57 | | - 'mock>=3.0.5', # For mocking command line args etc. |
58 | 57 | 'codecov>=2.1.3', |
59 | 58 | 'syncropatch_export @ git+https://github.com/CardiacModelling/syncropatch_export.git' |
60 | 59 | ], |
61 | 60 | }, |
62 | 61 | entry_points={ |
63 | 62 | 'console_scripts': [ |
64 | | - 'pcpostprocess=' |
65 | | - 'pcpostprocess.scripts.__main__:main', |
| 63 | + 'pcpostprocess=pcpostprocess.scripts.__main__:main', |
66 | 64 | ], |
67 | 65 | }, |
68 | 66 | ) |
0 commit comments