forked from denisenkom/pytwain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 903 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
from distutils.core import setup
setup(name='pytwain',
version='2.0',
author='Mikhail Denisenko',
author_email='[email protected]',
url='https://github.com/denisenkom/pytwain',
package_dir={'': 'src'},
py_modules=['twain'],
description="TWAIN API for accessing scanners, cameras, etc on Windows",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Topic :: Multimedia :: Graphics :: Capture :: Digital Camera',
'Topic :: Multimedia :: Graphics :: Capture :: Scanners',
],
tests_require=['six'],
)