forked from appliedsec/djangular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.5 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
try:
from setuptools import setup, find_packages
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='djangular',
version='0.2.3',
description="A reusable app that provides better app integration with AngularJS.",
long_description="""
A reusable app that provides better app integration with Angular. Djangular allows you to create Angular content per
app, instead of creating a single massive Angular application inside of Django. This allows you to selectively use
apps per site, as well as create a consistent structure across all of your Django apps.
This is intended to be a Django version of the Angular-Seed project (https://github.com/angular/angular-seed). The
current mindset is to limit the amount of changes introduced by Djangular.
""",
keywords='djangular django angular angularjs',
license='Apache',
packages=['djangular'],
include_package_data=True,
author='Brian Montgomery',
author_email='brianm@appliedsec.com',
url='http://github.com/appliedsec/djangular',
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.7",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)