-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 799 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
28
29
30
from setuptools import setup, find_packages
# Use this for installing the package using pip for usage in shell
setup(
name="fontgadgets",
version="0.2.1",
description="A package to add more functions to fontParts and defcon objects.",
author="Bahman Eslami",
author_email="[email protected]",
url="http://bahman.design",
license="MIT",
platforms=["Any"],
package_dir={'': 'fontgadgets.roboFontExt/lib'},
packages=find_packages('fontgadgets.roboFontExt/lib'),
install_requires=[
"fontParts",
"defcon",
"fontTools",
"ufo2ft",
"ufoLib2",
"pytest",
"ufonormalizer",
"GitPython",
"python-bidi==0.4.2", # pin for now, 0.5 breaks things
"fontTools==4.55.2"
],
tests_require=[
'pytest>=3.9',
],
)