-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 988 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import join, dirname
from setuptools import setup, find_packages
setup(
name='django-x_file_accel_redirects',
version='0.0.3',
packages=find_packages(),
requires=['python (>= 2.7)', 'django_model_utils'],
install_requires=['django-model-utils>=1.4.0'],
tests_require=['mock'],
description='Django app to easy configuration of multiple X-File-Accel locations',
long_description=open(join(dirname(__file__), 'README.rst')).read(),
author='42 Coffee Cups',
author_email='[email protected]',
url='https://github.com/42cc/django-x-file-accel',
download_url='https://github.com/42cc/django-x-file-accel/archive/master.zip',
license='BSD License',
keywords=['ripple', 'api'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
],
)