-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 828 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 828 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as file:
description = file.read()
setup(
name='django-pipeline-handlebars',
version='0.1',
description='django-pipeline compiler for handlebars templates',
long_description=description,
author='Karol Sikora',
author_email='karol.sikora@laboratorium,ee',
url='http://laboratorium.ee',
packages=find_packages(),
zip_safe=False,
install_requires=[
'django-pipeline',
],
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
]
)