forked from Fry-kun/pyseek
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 716 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 716 Bytes
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
version = "0.0.1"
setup(name='pyseek',
version=version,
zip_safe=True,
description='library for control of seek thermal camera',
url='https://github.com/Fry-kun/pyseek',
author='Fry Kun',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering'],
license='MIT',
packages=['pyseek',
'pyseek.lib'],
install_requires=['pyusb',
'numpy',
'scipy']
)