forked from nyaruka/django-hamlpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (43 loc) · 1.62 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst') # noqa
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read() # noqa
def _is_requirement(line):
"""Returns whether the line is a valid package requirement."""
line = line.strip()
return line and not line.startswith("#")
def _read_requirements(filename):
"""Parses a file for pip installation requirements."""
with open(filename) as requirements_file:
contents = requirements_file.read()
return [line.strip() for line in contents.splitlines() if _is_requirement(line)]
setup(
name='django-hamlpy',
version=__import__('hamlpy').__version__,
description='Haml like syntax for Django templates.',
long_description=read_md('README.md'),
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
keywords='haml django converter',
url='http://github.com/nyaruka/django-hamlpy',
license='MIT',
maintainer='Nyaruka',
maintainer_email='[email protected]',
packages=find_packages(),
install_requires=_read_requirements("requirements/base.txt"),
tests_require=_read_requirements("requirements/tests.txt"),
entry_points={
'console_scripts': [
'hamlpy-watcher = hamlpy.hamlpy_watcher:watch_folder'
]
}
)