-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
27 lines (25 loc) · 1023 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
24
25
26
27
#!/usr/bin/python3
""" py3.8 Ubuntu focal packaging """
from glob import glob
from setuptools import setup, find_packages
setup(
name="PTXprint",
version="2.6.10",
description="Typesetting using (Xe)TeX for Paratext",
url="https://software.sil.org/ptxprint",
author="SIL International",
packages=find_packages('python/lib'), # include all packages under lib
package_dir={'': 'python/lib'}, # indicate packages are under lib
include_package_data=True, # include everything in MANIFEST.in
package_data={'ptxprint': ['*.*']},
scripts=["python/scripts/ptxprint", "python/scripts/xdvitype", "python/scripts/pdfdiff"],
install_requires=["regex", "pygobject", "fonttools", "pycairo", "appdirs", "Pillow"], #, "ssl"],
zip_safe=False,
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"Environment :: X11 Applications :: GTK",
"Topic :: Text Editors :: Text Processing",
"License :: OSI Approved :: MIT License",
]
)