forked from klecknerlab/simple_pyspin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 849 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='simple_pyspin',
version='0.1.1',
description='An easy-to-use Pythonic wrapper for the FLIR PySpin Library. Developed by the Kleckner Lab at UC Merced.',
url='https://github.com/klecknerlab/simple_pyspin',
long_description=long_description,
long_description_content_type="text/markdown",
author='Dustin Kleckner',
license='Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0)',
packages=['simple_pyspin'],
install_requires=[],
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)