-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
35 lines (31 loc) · 1.06 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
from setuptools import find_packages
from setuptools import setup
setup(
name='pre-commit-hooks-markup',
description='Hooks for pre-commit that validate Markdown / RST files',
url='https://github.com/Lucas-C/pre-commit-hooks-markup',
version='1.0.1',
author='Lucas Cimon',
author_email='lucas.cimon+pypi@gmail.com',
platforms='linux',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
packages=find_packages('.'),
install_requires=[
'readme_renderer',
],
entry_points={
'console_scripts': [
'rst_linter = pre_commit_hooks.rst_linter:main',
],
},
)