-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·27 lines (26 loc) · 971 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='flweb_mwf_gallery',
version='1.0.1',
description='Internal tool to create "Made with FontLab" gallery pages',
long_description='Internal tool to create "Made with FontLab" gallery pages',
keywords='',
url='https://github.com/fontlabcom/flweb_mwf_gallery',
author='Adam Twardoch',
author_email='[email protected]',
license='MIT',
python_requires='>=3.10',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
],
packages=find_packages(),
entry_points = {
'console_scripts': ['flweb_mwf_gallery=flweb_mwf_gallery.flweb_mwf_gallery:cli'],
}
)