-
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.
- Loading branch information
Showing
1 changed file
with
37 additions
and
34 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 |
---|---|---|
|
@@ -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", | ||
], | ||
) |