-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·54 lines (50 loc) · 1.68 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
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from gensty.config import __version__, __author__, __email__
with open('README.md', encoding='utf-8') as readme_file:
readme = readme_file.read()
setup(
name='gensty',
version=__version__,
description='LaTex style generator for ttf/otf fonts. Supports Smufl.',
long_description_content_type='text/markdown',
long_description= readme,
author=__author__,
author_email=__email__,
python_requires='>=3',
packages=[
'gensty',
],
package_dir={'gensty': 'gensty'},
include_package_data=True,
entry_points = {
'console_scripts': ['gensty=gensty.cli:cli'],
},
install_requires=['fontTools'],
license='GPL-2.0 License',
zip_safe=False,
keywords='latex generator package fonts',
project_urls={
"Documentation":"https://gensty.readthedocs.io/",
"Source": "https://github.com/tsotsos/gensty",
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'Topic :: Text Processing :: Markup :: LaTeX',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
],
)