mirror of
https://github.com/google/pybadges.git
synced 2026-01-09 12:50:18 +01:00
52 lines
1.9 KiB
Python
52 lines
1.9 KiB
Python
# Copyright 2018 The pybadge Authors
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
"""A setup module for pybadges."""
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='pybadges',
|
|
version='0.0.1',
|
|
author='Brian Quinlan',
|
|
author_email='brian@sweetapp.com',
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Intended Audience :: Developers',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Operating System :: OS Independent',
|
|
],
|
|
description='A library and command-line tool for generating Github-style ' +
|
|
'badges',
|
|
include_package_data=True,
|
|
keywords="github gh-badges badge shield status",
|
|
package_data={'pybadges': ['badge-template-full.svg',
|
|
'default-widths.json.xz']},
|
|
long_description="test",
|
|
install_requires=['Jinja2>=2'],
|
|
extras_require={
|
|
'pil-measurement': ['Pillow>=5'],
|
|
'dev': ['fonttools>=3.26', 'nox-automation>=0.19', 'Pillow>=5',
|
|
'pytest>=3.6'],
|
|
},
|
|
license='Apache-2.0',
|
|
packages=["pybadges"],
|
|
url='https://github.com/brianquinlan/cloud-opensource-python/pybadges')
|