From: yomguy Date: Tue, 20 Mar 2012 21:37:52 +0000 (+0100) Subject: rename X-Git-Tag: 0.2~108 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=d8b5e825137fdb6776fa57e917e8e12328e50181;p=teleforma.git rename --- diff --git a/setup.py b/setup.py index ea38a078..c8fa4cde 100644 --- a/setup.py +++ b/setup.py @@ -5,11 +5,13 @@ import telemeta 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', ] +README = os.path.join(os.path.dirname(__file__), 'README.rst') + setup( - name = "Telemeta", - url = "http://telemeta.org", - description = "open web audio CMS", - long_description = open('README.rst').read(), + name = "TeleForma", + url = "http://parisson.com/products/teleforma", + description = "open multimedia e-leaning system", + long_description = open(README).read(), author = "Guillaume Pellerin", author_email = "yomguy@parisson.com", version = telemeta.__version__, @@ -22,6 +24,7 @@ setup( 'django-pagination', 'django-postman', 'django-socialregistration', + 'telemeta', ], platforms=['OS Independent'], license='CeCILL v2', diff --git a/telecampus/__init__.py b/telecampus/__init__.py deleted file mode 100755 index e69de29b..00000000 diff --git a/telecampus/models.py b/telecampus/models.py deleted file mode 100755 index 71a83623..00000000 --- a/telecampus/models.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.db import models - -# Create your models here. diff --git a/telecampus/tests.py b/telecampus/tests.py deleted file mode 100755 index 501deb77..00000000 --- a/telecampus/tests.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -This file demonstrates writing tests using the unittest module. These will pass -when you run "manage.py test". - -Replace this with more appropriate tests for your application. -""" - -from django.test import TestCase - - -class SimpleTest(TestCase): - def test_basic_addition(self): - """ - Tests that 1 + 1 always equals 2. - """ - self.assertEqual(1 + 1, 2) diff --git a/telecampus/views.py b/telecampus/views.py deleted file mode 100755 index 60f00ef0..00000000 --- a/telecampus/views.py +++ /dev/null @@ -1 +0,0 @@ -# Create your views here.