forked from praekeltfoundation/seed-auth-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 976 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 976 Bytes
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
from setuptools import setup, find_packages
setup(
name='seed-auth-api',
version='0.0.0',
url='https://github.com/praekelt/seed-auth-api',
license='BSD',
author='Praekelt Foundation',
author_email='dev@praekeltfoundation.org',
packages=find_packages(),
include_all_package_data=True,
install_requires=[
'Django==1.9.7',
'dj_database_url==0.4.1',
'psycopg2cffi==2.7.4',
'djangorestframework==3.3.3',
'drf-extensions==0.2.8',
'djangorestframework-composed-permissions==0.1',
],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)