forked from LettError/glyphNameFormatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (22 loc) · 846 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/env python
from setuptools import setup
import re
version = ''
with open('Lib/glyphNameFormatter/__init__.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(1)
setup(name = "Glyph Name Formatter",
version = version,
description = "Generate list of glyphnames from unicode names.",
author = "Erik van Blokland, Frederik Berlaen",
author_email = "[email protected], [email protected]",
url = "https://github.com/LettError/glyphNameFormatter",
license = "BSD 3 Clause",
packages = [
"glyphNameFormatter",
"glyphNameFormatter.data",
"glyphNameFormatter.rangeProcessors",
"glyphNameFormatter.test",
],
package_dir = {"":"Lib"},
)