-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
38 lines (33 loc) · 1.27 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
from setuptools import setup, find_packages
import io
import os
with io.open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
with open('docs'+os.sep+'requirements.txt') as f:
required = f.read().splitlines()
setup(
name='pyPPG',
version='1.0.72',
description='pyPPG: a python toolbox for PPG morphological analysis.',
author='Marton A. Goda, PhD; Peter H. Charlton, PhD',
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/godamartonaron/GODA_pyPPG",
project_urls={"Bug Tracker": "https://github.com/pypa/sampleproject/issues",},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
packages={"pyPPG", "pyPPG"+os.sep+"ppg_bm", "pyPPG"+os.sep+"pack_ppg", "pyPPG"+os.sep+"validation"},
package_data={
"pyPPG": ["*"],
"pyPPG"+os.sep+"ppg_bm": ["*"],
"pyPPG"+os.sep+"pack_ppg": ["*"],
"pyPPG"+os.sep+"validation": ["pw_anal.py, __init__.py"],
},
install_requires=[required],
python_requires=">=3.10",
include_package_data=True,
)