mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-13 20:40:08 -06:00
Merge pull request #760 from pre-commit/long_description
Include README as long_description
This commit is contained in:
@@ -12,7 +12,7 @@ matrix:
|
||||
- env: TOXENV=py36
|
||||
python: 3.6
|
||||
- env: TOXENV=pypy
|
||||
python: pypy-5.7.1
|
||||
python: pypy2.7-5.10.0
|
||||
install: pip install coveralls tox
|
||||
script: tox
|
||||
before_install:
|
||||
|
||||
7
setup.py
7
setup.py
@@ -1,6 +1,8 @@
|
||||
from setuptools import find_packages
|
||||
from setuptools import setup
|
||||
|
||||
with open('README.md') as f:
|
||||
long_description = f.read()
|
||||
|
||||
setup(
|
||||
name='pre_commit',
|
||||
@@ -8,12 +10,12 @@ setup(
|
||||
'A framework for managing and maintaining multi-language pre-commit '
|
||||
'hooks.'
|
||||
),
|
||||
long_description=long_description,
|
||||
long_description_content_type='text/markdown',
|
||||
url='https://github.com/pre-commit/pre-commit',
|
||||
version='1.10.1',
|
||||
|
||||
author='Anthony Sottile',
|
||||
author_email='asottile@umich.edu',
|
||||
|
||||
classifiers=[
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Programming Language :: Python :: 2',
|
||||
@@ -24,7 +26,6 @@ setup(
|
||||
'Programming Language :: Python :: Implementation :: CPython',
|
||||
'Programming Language :: Python :: Implementation :: PyPy',
|
||||
],
|
||||
|
||||
packages=find_packages(exclude=('tests*', 'testing*')),
|
||||
package_data={
|
||||
'pre_commit': [
|
||||
|
||||
Reference in New Issue
Block a user