forked from fnusa-icrc-ice/epycon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 890 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (28 loc) · 890 Bytes
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
import re
from pathlib import Path
from setuptools import setup, find_packages
# 版本号单一来源:epycon/__init__.py 的 __version__
version = re.search(
r"__version__\s*=\s*['\"]([^'\"]+)['\"]",
Path(__file__).with_name('epycon').joinpath('__init__.py').read_text(encoding='utf-8'),
).group(1)
setup(
name='epycon',
version=version,
description='Parsing and converting Abbott WorkMate EP data into open formats '
'(fork of FNUSA-ICRC epycon, with Web UI)',
url='https://github.com/flyskyman/epycon-webui',
author='flyskyman',
author_email='flyskyman@gmail.com',
packages=find_packages(),
install_requires=[
'h5py',
'jsonschema',
'numpy',
],
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
zip_safe=False,
)