-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
31 lines (26 loc) · 1004 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
31
#!/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",
"glyphNameFormatter.exporters",
],
package_dir = {"":"Lib"},
package_data = {
'glyphNameFormatter': ['data/*.txt', 'data/*.html', 'data/*.xml'],
}
)