|
19 | 19 | # Module name (lowercase) |
20 | 20 | name='syncropatch_export', |
21 | 21 | version=version, |
22 | | - description='Post-process high-throughput patch-clamp data', |
| 22 | + description='Reads syncropatch data', |
23 | 23 | long_description=readme, |
24 | | - long_description_content_type="text/markdown", |
25 | | - author='Frankie Patten-Elliot, Joseph Shuttleworth, Chon Lok Lei', |
| 24 | + long_description_content_type='text/markdown', |
| 25 | + author='Frankie Patten-Elliot, Joseph Shuttleworth, Chon Lok Lei, Michael Clerx', |
26 | 26 | author_email='joseph.shuttleworth@nottingham.ac.uk', |
27 | 27 | maintainer='Joseph Shuttleworth', |
28 | 28 | maintainer_email='joseph.shuttleworth@nottingham.ac.uk', |
29 | 29 | # url='https://github.com/CardiacModelling/markov-builder', |
30 | 30 | classifiers=[ |
31 | | - "Programming Language :: Python :: 3", |
32 | | - "License :: OSI Approved :: BSD License", |
33 | | - "Operating System :: OS Independent", |
| 31 | + 'Programming Language :: Python :: 3', |
| 32 | + 'License :: OSI Approved :: BSD License', |
| 33 | + 'Operating System :: OS Independent', |
34 | 34 | ], |
35 | 35 |
|
36 | 36 | # Packages to include |
|
41 | 41 | include_package_data=True, |
42 | 42 |
|
43 | 43 | # Required Python version |
44 | | - python_requires='>=3.7', |
| 44 | + python_requires='>=3.10', |
45 | 45 |
|
46 | 46 | # List of dependencies |
47 | 47 | install_requires=[ |
48 | | - 'scipy>=1.7', |
49 | 48 | 'numpy>=1.21', |
50 | | - 'matplotlib>=3.4', |
51 | | - 'pandas>=1.3', |
52 | | - 'regex>=2023.12.25' |
53 | 49 | ], |
54 | 50 | extras_require={ |
55 | 51 | 'test': [ |
56 | 52 | 'pytest-cov>=2.10', # For coverage checking |
57 | 53 | 'pytest>=4.6', # For unit tests |
58 | 54 | 'flake8>=3', # For code style checking |
59 | 55 | 'isort', |
60 | | - 'mock>=3.0.5', # For mocking command line args etc. |
61 | 56 | 'codecov>=2.1.3', |
62 | 57 | ], |
63 | 58 | 'docs': [ |
|
0 commit comments