]> git.parisson.com Git - teleforma.git/commitdiff
rename
authoryomguy <yomguy@parisson.com>
Tue, 20 Mar 2012 21:37:52 +0000 (22:37 +0100)
committeryomguy <yomguy@parisson.com>
Tue, 20 Mar 2012 21:37:52 +0000 (22:37 +0100)
setup.py
telecampus/__init__.py [deleted file]
telecampus/models.py [deleted file]
telecampus/tests.py [deleted file]
telecampus/views.py [deleted file]

index ea38a078b857fe737072d6147b0591522f533687..c8fa4cde1ef70f95fecbf581f4dc9a4db75c3021 100644 (file)
--- 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 (executable)
index e69de29..0000000
diff --git a/telecampus/models.py b/telecampus/models.py
deleted file mode 100755 (executable)
index 71a8362..0000000
+++ /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 (executable)
index 501deb7..0000000
+++ /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 (executable)
index 60f00ef..0000000
+++ /dev/null
@@ -1 +0,0 @@
-# Create your views here.