-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (36 loc) · 1.41 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
with open('README.rst') as readme:
long_description = readme.read()
with open('requirements.txt') as requirements:
lines = requirements.readlines()
libraries = [lib for lib in lines if not lib.startswith('-')]
dependency_links = [link.split()[1] for link in lines if
link.startswith('-f')]
setup(
name='djangorestframework-custom-exceptions',
version='1.0.2',
packages=find_packages(),
install_requires=libraries,
dependency_links=dependency_links,
long_description=long_description,
author='Morgan Bohn',
author_email='[email protected]',
maintainer='Morgan Bohn',
maintainer_email='[email protected]',
description='Custom exceptions for Django REST Framework',
keywords=['django', 'REST', 'rest_framework', 'exceptions'],
url='https://github.com/unistra/django-rest-framework-custom-exceptions',
download_url='https://pypi.python.org/pypi/djangorestframework-custom-exceptions',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
]
)