-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 1.29 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
CLASSIFIERS = ['Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Science/Research', 'Intended Audience :: Education', 'Programming Language :: Python', 'Programming Language :: JavaScript', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', 'Topic :: Multimedia :: Sound/Audio', 'Topic :: Multimedia :: Sound/Audio :: Analysis', 'Topic :: Multimedia :: Sound/Audio :: Players', 'Topic :: Scientific/Engineering :: Information Analysis', 'Topic :: System :: Archiving', ]
setup(
name = "telecaster-client",
url = "http://parisson.com",
description = "Audio and video live recording and streaming module for the e-learning system TeleForma (Python, Django, Javascript)",
long_description = open('README.rst').read(),
author = "Guillaume Pellerin",
author_email = "[email protected]",
version = '0.8',
install_requires = [
'django>=1.4.0',
'django-json-rpc',
'south',
'deefuzzer',
'telemeta',
'teleforma',
'psutil'
],
platforms=['OS Independent'],
license='CeCILL v2',
classifiers = CLASSIFIERS,
packages = find_packages(),
include_package_data = True,
zip_safe = False,
)