forked from phuselab/pyVHR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.12 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
import setuptools
import os
from shutil import copyfile
requirementPath = 'requirements.txt'
reqs = []
if os.path.isfile(requirementPath):
with open(requirementPath) as f:
reqs = f.read().splitlines()
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pyVHR",
version="1.0.2",
author="Vittorio Cuculo <[email protected]>, Donatello Conte <[email protected]>, Alessandro D'Amelio <[email protected]>, Giuliano Grossi <[email protected]>, Edoardo Mortara <[email protected]>",
author_email="",
description="Package for rPPG methods",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/phuselab/pyVHR",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
package_data={"": ['*.pth', '*.png', '*.hdf5']},
include_package_data = True,
python_requires='>=3.6',
install_requires=reqs,
)