-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (53 loc) · 1.68 KB
/
setup.py
File metadata and controls
62 lines (53 loc) · 1.68 KB
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
from setuptools import find_packages, setup
# Load text for description
with open('README.md') as f:
readme = f.read()
# Load version number
import os # isort:skip
import sys # isort:skip
sys.path.append(os.path.abspath('syncropatch_export'))
from _version import __version__ as version # noqa isort:skip
sys.path.pop()
del os, sys
# Go!
setup(
# Module name (lowercase)
name='syncropatch_export',
version=version,
description='Reads syncropatch data',
long_description=readme,
long_description_content_type='text/markdown',
author='Frankie Patten-Elliot, Joseph Shuttleworth, Chon Lok Lei, Michael Clerx',
author_email='joseph.shuttleworth@nottingham.ac.uk',
maintainer='Joseph Shuttleworth',
maintainer_email='joseph.shuttleworth@nottingham.ac.uk',
# 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.10',
# List of dependencies
install_requires=[
'numpy>=1.21',
],
extras_require={
'test': [
'pytest-cov>=2.10', # For coverage checking
'pytest>=4.6', # For unit tests
'flake8>=3', # For code style checking
'isort',
'codecov>=2.1.3',
],
'docs': [
'sphinx>=1.7.4',
],
},
)