-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (52 loc) · 1.69 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
from setuptools import find_packages, setup
# Load text for description
with open('README.md') as f:
readme = f.read()
# Load version number
# with open('version.txt', 'r') as f:
# version = f.read()
# Go!
version = '0.0.1'
setup(
# Module name (lowercase)
name='syncropatch_export',
version=version,
description='Post-process high-throughput patch-clamp data',
long_description=readme,
long_description_content_type="text/markdown",
author='Frankie Patten-Elliot, Joseph Shuttleworth, Chon Lok Lei',
author_email='[email protected]',
maintainer='Joseph Shuttleworth',
maintainer_email='[email protected]',
# url='https://github.com/CardiacModelling/markov-builder',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
# Packages to include
packages=find_packages(
include=('syncropatch_export', 'syncropatch_export.*')),
# Include non-python files (via MANIFEST.in)
include_package_data=True,
# Required Python version
python_requires='>=3.7',
# List of dependencies
install_requires=[
'scipy>=1.7',
'numpy>=1.21',
'matplotlib>=3.4',
'pandas>=1.3',
'regex>=2023.12.25'
],
extras_require={
'test': [
'pytest-cov>=2.10', # For coverage checking
'pytest>=4.6', # For unit tests
'flake8>=3', # For code style checking
'isort',
'mock>=3.0.5', # For mocking command line args etc.
'codecov>=2.1.3',
],
},
)