-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
39 lines (34 loc) · 1.13 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
from setuptools import setup
from pathlib import Path
import versioneer
here = Path(__file__).parent
with (here / 'README.md').open('r') as f:
long_description = '\n' + f.read()
with open('requirements.txt') as f:
lines = f.read().split('\n')
install_requires = [line.split()[0] for line in lines if line]
setup(
name='jinjalint',
author='Antoine Motet',
author_email='[email protected]',
url='https://github.com/motet-a/jinjalint',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='A linter for Jinja-like templates',
long_description=long_description,
packages=['jinjalint'],
include_package_data=True,
license='MIT',
install_requires=install_requires,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
entry_points={
'console_scripts': ['jinjalint=jinjalint.cli:main'],
},
)