-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
21 lines (18 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
CLASSIFIERS = ['Environment :: Web Environment', 'Framework :: Django', '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 = "TeleForma",
url = "https://github.com/yomguy/teleforma",
description = "open web multimedia e-learning platform",
long_description = open('README.rst').read(),
author = "Guillaume Pellerin",
author_email = "yomguy@parisson.com",
version = '2.8.0',
platforms=['OS Independent'],
license='CeCILL v2',
classifiers = CLASSIFIERS,
packages = find_packages(),
include_package_data = True,
zip_safe = False,
)