-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package the scripts. Improve documentation.
- Loading branch information
1 parent
fa2de4e
commit 4410a5a
Showing
13 changed files
with
110 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
*.pyc | ||
*.egg-info | ||
build | ||
venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
from setuptools import setup | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name="opentypesvg", | ||
version="1.1.1", | ||
author="Miguel Sousa", | ||
author_email="[email protected]", | ||
description="Tools for making OpenType-SVG fonts", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/adobe-type-tools/opentype-svg", | ||
license="MIT", | ||
platforms=["Any"], | ||
package_dir={'': 'lib'}, | ||
packages=['opentypesvg'], | ||
python_requires='>=3.6', | ||
install_requires=['fontTools[woff]>=3.1.0'], | ||
entry_points={ | ||
'console_scripts': [ | ||
"addsvg = opentypesvg.addsvg:main", | ||
"dumpsvg = opentypesvg.dumpsvg:main", | ||
"fonts2svg = opentypesvg.fonts2svg:main", | ||
] | ||
}, | ||
) |
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.