-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (44 loc) · 1.41 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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="image3font",
version="1.1.3",
packages=["image3font"],
package_data={
"image3font": ["*.hy"],
},
scripts = ["image3font/image3font.hy", "image3font/table.hy"],
install_requires = [
"hy>=0.10",
"fonttools",
"docopt",
"toml",
"wand",
],
author="adjivas",
author_email="adjivas@users.noreply.github.com",
maintainer="adjivas",
maintainer_email="adjivas@users.noreply.github.com",
keywords=["fontforge", "fonttools"],
description="""A image's converter to font written in Fontforge/FontTools's Hy script.""",
long_description="",
include_package_data=True,
url="https://adjivas.github.io/image3font",
platforms=["any"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Lisp",
"Topic :: Artistic Software",
"Topic :: Utilities",
"Topic :: Text Processing :: Fonts",
"Operating System :: OS Independent",
"Topic :: Software Development :: Compilers",
],
license="GPL-3",
)