forked from nvbn/django-bower
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 783 Bytes
/
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
from setuptools import setup, find_packages
version = '5.0.4'
setup(
name='django-bower',
version=version,
description="Integrate django with bower",
long_description=open('README.rst').read(),
classifiers=[
'Framework :: Django',
'Programming Language :: JavaScript',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
keywords='',
author='Vladimir Iakovlev',
author_email='nvbn.rm@gmail.com',
url='https://github.com/nvbn/django-bower',
license='BSD',
packages=find_packages(exclude=['example']),
include_package_data=True,
zip_safe=True,
install_requires=[
'django',
'six',
],
entry_points="""
# -*- Entry points: -*-
""",
)