-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
32 lines (29 loc) · 1.1 KB
/
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
26
27
28
29
30
31
32
from distutils.core import setup
import version
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="pytwain",
version=version.get_git_version(),
author="Mikhail Denisenko",
url="https://github.com/denisenkom/pytwain",
package_dir={"": "src"},
packages=["twain", "twain.lowlevel"],
description="TWAIN API for accessing scanners, cameras, etc on Windows",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Topic :: Multimedia :: Graphics :: Capture :: Digital Camera",
"Topic :: Multimedia :: Graphics :: Capture :: Scanners",
],
tests_require=[],
)