-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 1.17 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
# -*- coding: utf-8 -*-
from setuptools import setup
def readme():
with open("README.md") as f:
return f.read()
setup(name="VerticalMetricsTools",
version="0.1",
description="a little collection of tools to deal with font vertical metrics",
long_description=readme(),
classifiers=[
"Development Status :: 4 - Beta",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Build Tools",
],
author="Mathieu Reguer",
author_email="mathieu.reguer@gmail.com",
license="All rights reserved",
packages=[
"VerticalMetricsTools",
],
entry_points="""
[console_scripts]
vertical_metrics_preview=VerticalMetricsTools.VerticalMetricsPreview:preview_vertical_metrics
vertical_metrics_inject=VerticalMetricsTools.VerticalMetricsUpdate:vertical_metrics_inject_in_fonts_wrapper
""",
install_requires=[
"fonttools",
"click",
"drawbot @ git+https://github.com/typemytype/drawbot",
"pyaml"
],
include_package_data=True,
zip_safe=False)