forked from jrief/django-angular
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (32 loc) · 1.11 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
import os
from setuptools import setup, find_packages
from djangular import __version__
DESCRIPTION = 'Reusable mixins classes and utility functions which help to integrate AngularJS with Django.'
CLASSIFIERS = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Development Status :: 4 - Beta',
]
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-angular',
version=__version__,
author='Jacob Rief',
author_email='[email protected]',
description=DESCRIPTION,
long_description=read('README.md'),
url='https://github.com/jrief/django-angular',
license='MIT',
keywords = ['django', 'angularjs'],
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=['Django>=1.4'],
packages=find_packages(exclude=['tests', 'docs']),
include_package_data=True,
)