forked from miki725/django-url-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (43 loc) · 1.55 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
52
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import os
from setuptools import find_packages, setup
from url_filter import __author__, __version__
def read(fname):
return (open(os.path.join(os.path.dirname(__file__), fname), 'rb')
.read().decode('utf-8'))
authors = read('AUTHORS.rst')
history = read('HISTORY.rst').replace('.. :changelog:', '')
licence = read('LICENSE.rst')
readme = read('README.rst')
req = read('requirements.txt').splitlines()
dev_req = read('requirements-dev.txt').splitlines()[1:]
requirements = req + ['setuptools']
test_requirements = req + dev_req
setup(
name='django-url-filter',
version=__version__,
author=__author__,
description='Django URL Filter provides a safe way to filter data via human-friendly URLs.',
long_description='\n\n'.join([readme, history, authors, licence]),
url='https://github.com/miki725/django-url-filter',
license='MIT',
packages=find_packages(exclude=['test_project*', 'tests*']),
install_requires=requirements,
test_suite='tests',
tests_require=test_requirements,
keywords=' '.join([
'django django-rest-framework',
]),
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Development Status :: 2 - Pre-Alpha',
],
)