-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.04 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
from setuptools import setup, find_packages
version = '0.1'
setup(
name='django-simple-bower',
version=version,
description="Integrate bower with django using a template tag",
long_description=open('README.md').read(),
classifiers=[
"Framework :: Django",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Natural Language :: English",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup :: HTML",
],
keywords='django, bower',
author='Ekin Ertaç',
author_email='ekinertac@gmail.com',
url='https://github.com/ekinertac/django-simple-bower',
license='WTFPL',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'Django>1.4',
'django-classy-tags',
]
)