-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (28 loc) · 980 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
setup(
name='emberdrf',
version='0.1.9',
description="Django Rest Framework addons to integrate with Ember.js",
author="Gordon Cassie",
author_email='[email protected]',
url='https://github.com/g-cassie/ember-drf',
license='BSD',
keywords="EmberJS Django REST",
packages=find_packages(),
install_requires=[],
platforms=['any'],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Environment :: Web Environment',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)