30 packages.append('.'.join(fullsplit(dirpath))) |
30 packages.append('.'.join(fullsplit(dirpath))) |
31 elif filenames: |
31 elif filenames: |
32 data_files.append([dirpath, [os.path.join(dirpath, f) for f in filenames]]) |
32 data_files.append([dirpath, [os.path.join(dirpath, f) for f in filenames]]) |
33 |
33 |
34 setup( |
34 setup( |
35 name = 'Ldt', |
35 name='Ldt', |
36 version = version, |
36 version=version, |
37 author = 'Yves-Marie Haussonne (IRI)', |
37 author='Yves-Marie Haussonne (IRI)', |
38 author_email = 'contact@iri.centrepompidou.fr', |
38 author_email='contact@iri.centrepompidou.fr', |
39 packages = packages, |
39 packages=packages, |
40 data_files = data_files, |
40 data_files=data_files, |
41 # package_data = { |
41 # package_data = { |
42 # '': [ |
42 # '': [ |
43 # 'media/*', |
43 # 'media/*', |
44 # 'locale/*/LC_MESSAGES/*', |
44 # 'locale/*/LC_MESSAGES/*', |
45 # 'templates/ldt/*.html', |
45 # 'templates/ldt/*.html', |
46 # 'templates/admin/*.html', |
46 # 'templates/admin/*.html', |
47 # 'templates/cms/admin/cms/page/*.html', |
47 # 'templates/cms/admin/cms/page/*.html', |
48 # ] |
48 # ] |
49 # }, |
49 # }, |
50 scripts =[], |
50 scripts=[], |
51 url = 'https://www.iri.centrepompidou.fr/dev/hg/platform', |
51 url='https://www.iri.centrepompidou.fr/dev/hg/platform', |
52 license = 'LICENSE.txt', |
52 license='LICENSE.txt', |
53 description = 'Platform ldt', |
53 description='Platform ldt', |
54 long_description = open('README.txt').read(), |
54 long_description=open('README.txt').read(), |
55 zip_safe = False, |
55 zip_safe=False, |
56 classifiers = ['Development Status :: 5 - Production/Stable', |
56 classifiers=['Development Status :: 5 - Production/Stable', |
57 'Environment :: Web Environment', |
57 'Environment :: Web Environment', |
58 'Framework :: Django', |
58 'Framework :: Django', |
59 'Intended Audience :: Developers', |
59 'Intended Audience :: Developers', |
60 'License :: Ceccil-C', |
60 'License :: Ceccil-C', |
61 'Operating System :: OS Independent', |
61 'Operating System :: OS Independent', |