forked from accessibleapps/accessible_output2
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.3 KB
/
setup.py
File metadata and controls
39 lines (36 loc) · 1.3 KB
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
33
34
35
36
37
38
39
from setuptools import setup, find_packages
import io
__doc__ = (
"""Library to provide speech and braille output to a variety of different screen readers and other accessibility solutions."""
)
with io.open("readme.rst", encoding="UTF8") as readme:
long_description = readme.read()
setup(
name="accessible_output2",
author="Tyler Spivey",
author_email="tspivey@pcdesk.net",
version="0.17",
description=__doc__,
long_description=long_description,
package_dir={"accessible_output2": "accessible_output2"},
packages=find_packages(),
package_data={"accessible_output2": ["lib/*"]},
zip_safe=False,
install_requires=[
"libloader",
"platform_utils @ git+https://github.com/accessibleapps/platform_utils.git"
],
extras_require={
':sys_platform == "win32"': ["pywin32", "libloader"],
':sys_platform == "darwin"': ["appscript"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Topic :: Adaptive Technologies",
"Topic :: Software Development :: Libraries",
],
)