-
Notifications
You must be signed in to change notification settings - Fork 128
/
setup.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="2.0",
author="Vittorio Cuculo <vittorio.cuculo@unimi.it>, Donatello Conte <donatello.conte@univ-tours.fr>, Alessandro D'Amelio <alessandro.damelio@unimi.it>, Giuliano Grossi <giuliano.grossi@unimi.it>, Edoardo Mortara <edoardo.mortara@studenti.unimi.it>",
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,
)