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