-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 963 Bytes
/
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
import os
import sys
import warnings
from setuptools import setup, find_packages
# directory = os.path.abspath(os.path.dirname(__file__))
# with open(os.path.join(directory, 'README.md'), encoding='utf-8') as f:
# long_description = f .read()
setup(
name="flir_thermal",
author="Hakan Kucukdereli",
author_email="hkucukdereli@gmail.com",
maintainer="Hakan Kucukdereli",
maintainer_email="hkucukdereli@gmail.com",
description="Wrapper functions for handling FLIR .seq file format. Depends on Science File SDK.",
# long_description=long_description,
# long_description_content_type="text/markdown",
license="",
url="https://github.com/hkucukdereli/flir-thermal.git",
version="0.2",
download_url="https://github.com/hkucukdereli/flir-thermal.git",
install_requires=[
"numpy",
"tqdm",
"opencv-python",
"ffmpeg-python",
],
packages=find_packages(),
zip_safe=True,
)