-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
51 lines (46 loc) · 1.21 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
excludes = ['docs', 'example']
packages = [
'conduit',
'conduit.api',
'conduit.test',
'conduit.management',
'conduit.management.commands',
]
install_requires = [
'python_dateutil >= 2.1',
'six >= 1.3.0'
]
try:
import importlib
except ImportError:
install_requires.append('importlib')
setup(
name='django-conduit',
version='0.1.1',
description='Easy and powerful REST APIs for Django.',
author='Alec Koumjian',
author_email='[email protected]',
url='https://github.com/akoumjian/django-conduit',
packages=packages,
package_dir={'conduit': 'conduit'},
include_package_data=True,
install_requires=install_requires,
zip_safe=False,
license='Apache 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
)