-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 794 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 794 Bytes
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
from setuptools import setup, find_packages
setup(
name="fontgadgets",
version="0.2.3.1",
description="A package to extend fontParts and defcon objects.",
author="Bahman Eslami",
author_email="contact@bahman.design",
url="http://bahman.design",
license="MIT",
platforms=["Any"],
package_dir={"": "Lib"},
packages=find_packages("Lib"),
install_requires=[
"fontParts",
"defcon",
"ufo2ft",
"ufoLib2",
"pytest",
"ufonormalizer",
"fontGit",
"python-bidi==0.4.2", # pin for now, 0.5 breaks things
"fontTools==4.55.2",
"uharfbuzz==0.45.0",
"ufoProcessor @ git+https://github.com/LettError/ufoProcessor.git",
],
tests_require=[
"pytest>=3.9",
],
)