-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
26 lines (24 loc) · 995 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
#!/usr/bin/python3
from glob import glob
from setuptools import setup, find_packages
setup(
name="PTXprint",
version="2.7.36",
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", "numpy"], #, "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",
]
)