-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 710 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# this is the setup file - run once only to make the package:
# python setup.py sdist
# will make the tarball. This can be unpacked then:
# python setup.py install --prefix=/usr/local/bin
from distutils.core import setup, Extension
setup(name='RTIAcquire',
version='1.2dev',
packages=['rtiacquire'],
scripts=['bin/RTIAcquire'],
author='J. Cupitt',
author_email='[email protected]',
license='LICENSE.txt',
description='Remote-control of digital cameras',
ext_modules=[Extension('rtiacquire.dejpeg', ['rtiacquire/dejpeg.c'],
libraries=['jpeg'])],
package_data={'rtiacquire': ['data/*']},
requires=['pyserial'],
long_description=open('README.md').read(),
)