-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (52 loc) · 1.29 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import setuptools
long_description = """
# Drafting
Color and geometric primitives
"""
setuptools.setup(
name="drafting",
version="0.2.4",
author="Rob Stenson / Goodhertz",
author_email="[email protected]",
description="Color and geometric primitives",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/goodhertz/drafting",
packages=[
"drafting",
"drafting.sh",
"drafting.grid",
"drafting.pens",
"drafting.text",
"drafting.time",
"drafting.color",
"drafting.geometry",
"drafting.fontgoggles",
"drafting.interpolation",
"drafting.fontgoggles.font",
"drafting.fontgoggles.misc",
"drafting.fontgoggles.compile",
],
extras_require={
"text": [
"skia-pathops",
"freetype-py",
"uharfbuzz>=0.14.0",
"unicodedata2",
"ufo2ft",
"python-bidi",
]
},
install_requires=[
"lxml",
"fonttools[ufo]",
"fontPens",
"more-itertools",
"easing-functions",
"timecode",
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)