Overview
| Comment: | [fr] setup.py update |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fr |
| Files: | files | file ages | folders |
| SHA3-256: |
e00f811002d0697d317defbd453069db |
| User & Date: | olr on 2018-04-10 23:12:14 |
| Other Links: | manifest | tags |
Context
|
2018-04-11
| ||
| 06:43 | [fr] faux positif: confusion <quel/qu’elle> check-in: f148dd52e5 user: olr tags: trunk, fr | |
|
2018-04-10
| ||
| 23:12 | [fr] setup.py update check-in: e00f811002 user: olr tags: trunk, fr | |
| 20:15 | [fr] faux positif: ne justement pas +Vinf check-in: 91b9cdc1f2 user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/setup.py from [6dd81b2c5c] to [e665601366].
| ︙ | ︙ | |||
63 64 65 66 67 68 69 |
# Scripts
scripts=['grammalecte-cli.py', 'grammalecte-server.py', 'bottle.py'],
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
# packages=find_packages(exclude=['contrib', 'docs', 'tests']),
| | | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# Scripts
scripts=['grammalecte-cli.py', 'grammalecte-server.py', 'bottle.py'],
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
# packages=find_packages(exclude=['contrib', 'docs', 'tests']),
packages=['grammalecte', 'grammalecte.graphspell', 'grammalecte.fr'],
# Alternatively, if you want to distribute just a my_module.py, uncomment
# this:
# py_modules=["my_module"],
# List run-time dependencies here. These will be installed by pip when
# your project is installed. For an analysis of "install_requires" vs pip's
|
| ︙ | ︙ | |||
88 89 90 91 92 93 94 |
# 'test': ['coverage'],
# },
# If there are data files included in your packages that need to be
# installed, specify them here. If using Python 2.6 or less, then these
# have to be included in MANIFEST.in as well.
package_data={
| | | 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
# 'test': ['coverage'],
# },
# If there are data files included in your packages that need to be
# installed, specify them here. If using Python 2.6 or less, then these
# have to be included in MANIFEST.in as well.
package_data={
'grammalecte': ['graphspell/_dictionaries/fr.bdic', '*.txt']
},
# Although 'package_data' is the preferred approach, in some case you may
# need to place data files outside of your packages. See:
# http://docs.python.org/3.4/distutils/setupscript.html#installing-additional-files # noqa
# In this case, 'data_file' will be installed into '<sys.prefix>/my_data'
# data_files=[('my_data', ['data/data_file'])],
|
| ︙ | ︙ |