forked from jbhunt/parallel-pyspin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 882 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
import os
import setuptools
# scrape dependencies from the requirements.txt file
requirements = os.path.join(os.path.dirname(os.path.abspath('llpyspin')),'requirements.txt')
with open(requirements,'r') as stream:
dependencies = [requirement.strip('\n') for requirement in stream.readlines()]
setuptools.setup(
name="parallel-pyspin",
version="1.0.0",
author="Joshua Hunt",
author_email="[email protected]",
description="Parallel and synchronous video acqusition with FLIR USB3 cameras",
url="https://github.com/jbhunt/parallel-pyspin",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=dependencies,
include_package_data=True,
)