Skip to content

Commit

Permalink
Just formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
yanone committed Jan 31, 2024
1 parent 44b426b commit fdd50d4
Showing 1 changed file with 37 additions and 34 deletions.
71 changes: 37 additions & 34 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,50 +20,53 @@
from setuptools import setup

# Read the contents of the README file
with open('README.md', encoding="utf-8") as f:
with open("README.md", encoding="utf-8") as f:
long_description = f.read()

setup(
name="glyphsets",
use_scm_version={"write_to": "Lib/glyphsets/_version.py"},
url='https://github.com/googlefonts/glyphsets/',
description='A python API for evaluating coverage of glyph sets in font projects.',
url="https://github.com/googlefonts/glyphsets/",
description="A python API for evaluating coverage of glyph sets in font projects.",
long_description=long_description,
long_description_content_type='text/markdown', # This is important!
author=('Dave Crossland, '
'Eli Heuer, '
'Felipe Sanches, '
'Lasse Fister, '
'Marc Foley, '
'Yanone, '
'Roderick Sheeter'),
author_email='[email protected]',
package_dir={'': 'Lib'},
packages=['glyphsets', 'glyphsets.definitions'],
package_data={'glyphsets': [
"encodings/*.nam",
"encodings/GF Glyph Sets/*.nam",
"definitions/nam/*.nam",
"*.json",
]
},
long_description_content_type="text/markdown", # This is important!
author=(
"Dave Crossland, "
"Eli Heuer, "
"Felipe Sanches, "
"Lasse Fister, "
"Marc Foley, "
"Yanone, "
"Roderick Sheeter"
),
author_email="[email protected]",
package_dir={"": "Lib"},
packages=["glyphsets", "glyphsets.definitions"],
package_data={
"glyphsets": [
"encodings/*.nam",
"encodings/GF Glyph Sets/*.nam",
"definitions/nam/*.nam",
"*.json",
]
},
entry_points={"console_scripts": ["glyphsets = glyphsets.__main__:main"]},
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'Topic :: Text Processing :: Fonts',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
"Intended Audience :: Developers",
"Topic :: Text Processing :: Fonts",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
python_requires=">=3.7",
setup_requires=['setuptools_scm>=4,<8.1'],
setup_requires=["setuptools_scm>=4,<8.1"],
install_requires=[
'setuptools',
'FontTools[ufo]',
'glyphsLib',
'defcon',
'unicodedata2',
'gflanguages>=0.5.15',
]
"setuptools",
"FontTools[ufo]",
"glyphsLib",
"defcon",
"unicodedata2",
"gflanguages>=0.5.15",
],
)

0 comments on commit fdd50d4

Please sign in to comment.