|
49 | 49 |
|
50 | 50 | # What does your project relate to? |
51 | 51 | keywords='''CKAN Upload''', |
52 | | - |
53 | | - # You can just specify the packages manually here if your project is |
54 | | - # simple. Or you can use find_packages(). |
55 | | - packages=find_packages(exclude=['contrib', 'docs', 'tests*']), |
56 | | - namespace_packages=['ckanext'], |
57 | | - |
58 | | - install_requires=[ |
59 | | - # CKAN extensions should not list dependencies here, but in a separate |
60 | | - # ``requirements.txt`` file. |
61 | | - # |
62 | | - # http://docs.ckan.org/en/latest/extensions/best-practices.html |
63 | | - # add-third-party-libraries-to-requirements-txt |
64 | | - ], |
65 | | - |
66 | | - # If there are data files included in your packages that need to be |
67 | | - # installed, specify them here. If using Python 2.6 or less, then these |
68 | | - # have to be included in MANIFEST.in as well. |
69 | | - include_package_data=True, |
70 | | - package_data={ |
71 | | - }, |
72 | | - |
73 | | - # Although 'package_data' is the preferred approach, in some case you may |
74 | | - # need to place data files outside of your packages. |
75 | | - # see http://docs.python.org/3.4/distutils/setupscript.html |
76 | | - # installing-additional-files |
77 | | - # In this case, 'data_file' will be installed into '<sys.prefix>/my_data' |
78 | | - data_files=[], |
79 | | - |
80 | | - # To provide executable scripts, use entry points in preference to the |
81 | | - # "scripts" keyword. Entry points provide cross-platform support and allow |
82 | | - # pip to create the appropriate form of executable for the target platform. |
83 | 52 | entry_points=''' |
84 | 53 | [ckan.plugins] |
85 | 54 | multiuploader=ckanext.multiuploader.plugin:MultiuploaderPlugin |
86 | 55 |
|
87 | 56 | [babel.extractors] |
88 | 57 | ckan = ckan.lib.extract:extract_ckan |
89 | 58 | ''', |
90 | | - |
91 | | - # If you are changing from the default layout of your extension, you may |
92 | | - # have to change the message extractors, you can read more about babel |
93 | | - # message extraction at |
94 | | - # http://babel.pocoo.org/docs/messages/#extraction-method-mapping-and-configuration |
95 | 59 | message_extractors={ |
96 | 60 | 'ckanext': [ |
97 | 61 | ('**.py', 'python', None), |
|
0 commit comments