-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathsetup.py
48 lines (42 loc) · 1.26 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
#! /usr/bin/env python
# coding=utf-8
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
import audiofield
def read(*parts):
return open(os.path.join(os.path.dirname(__file__), *parts)).read()
setup(
name='django-audiofield',
version=audiofield.__version__,
description='Django application to upload and convert audio files (mp3, wav and ogg format)',
long_description=read('README.rst'),
url='http://github.com/Star2Billing/django-audiofield',
author='Belaid Arezqui',
author_email='[email protected]',
license='MIT License',
zip_safe=False,
packages=[
'audiofield',
],
include_package_data=True,
package_data={},
install_requires=[
'celery>=3.1.7',
'django-celery>=3.1.1',
'six>=1.9',
# -*- Extra requirements: -*-
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)