|
0
|
1 |
import os |
|
|
2 |
from setuptools import setup, find_packages |
|
|
3 |
|
|
|
4 |
ROOT_DIR = os.path.dirname(__file__) |
|
|
5 |
SOURCE_DIR = os.path.join(ROOT_DIR) |
|
|
6 |
|
|
|
7 |
version = __import__('ldt').__version__ |
|
|
8 |
|
|
|
9 |
setup( |
|
|
10 |
name = 'Ldt', |
|
|
11 |
version = version, |
|
|
12 |
author = 'Yves-Marie Haussonne (IRI)', |
|
|
13 |
author_email = 'contact@iri.centrepompidou.fr', |
|
|
14 |
packages = find_packages(), |
|
|
15 |
package_data = { |
|
|
16 |
'': [ |
|
|
17 |
'media/*', |
|
|
18 |
'locale/*/LC_MESSAGES/*', |
|
|
19 |
'templates/ldt/*.html', |
|
|
20 |
'templates/admin/*.html', |
|
|
21 |
'templates/cms/admin/cms/page/*.html', |
|
|
22 |
] |
|
|
23 |
}, |
|
|
24 |
scripts =[], |
|
|
25 |
url = 'https://www.iri.centrepompidou.fr/dev/hg/platform', |
|
|
26 |
license = 'LICENSE.txt', |
|
|
27 |
description = 'Platform ldt', |
|
|
28 |
long_description = open('README.txt').read(), |
|
|
29 |
zip_safe = False, |
|
|
30 |
classifiers = ['Development Status :: 5 - Production/Stable', |
|
|
31 |
'Environment :: Web Environment', |
|
|
32 |
'Framework :: Django', |
|
|
33 |
'Intended Audience :: Developers', |
|
|
34 |
'License :: Ceccil-C', |
|
|
35 |
'Operating System :: OS Independent', |
|
|
36 |
'Programming Language :: Python', |
|
|
37 |
'Topic :: Utilities'], |
|
|
38 |
) |