Grammalecte  Check-in [647e04d66d]

Overview
Comment:update package setup [fr]
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | fr
Files: files | file ages | folders
SHA3-256: 647e04d66da424e38b972f464ebc8a220c5700f7b33a8507033555736d2daeb1
User & Date: olr on 2017-04-26 14:15:18
Other Links: manifest | tags
Context
2017-04-26
14:27
update package setup [fr] check-in: 384bde7b06 user: olr tags: trunk, fr
14:15
update package setup [fr] check-in: 647e04d66d user: olr tags: trunk, fr
12:02
[server] update bottle check-in: f1a0fc04fc user: olr tags: trunk, server
Changes

Modified gc_lang/fr/setup.py from [26012bcb2d] to [f837658ae8].

11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Get the long description from the README file
# from os import path
# here = path.abspath(path.dirname(__file__))
# with open(path.join(here, 'README.txt'), encoding='utf-8') as f:
#     long_description = f.read()

setup(
    name='grammalecte',

    # Versions should comply with PEP440.  For a discussion on single-sourcing
    # the version across setup.py and the project code, see
    # https://packaging.python.org/en/latest/single_source_version.html
    version='${version}',

    description='French grammar checker',







|







11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Get the long description from the README file
# from os import path
# here = path.abspath(path.dirname(__file__))
# with open(path.join(here, 'README.txt'), encoding='utf-8') as f:
#     long_description = f.read()

setup(
    name='Grammalecte-fr',

    # Versions should comply with PEP440.  For a discussion on single-sourcing
    # the version across setup.py and the project code, see
    # https://packaging.python.org/en/latest/single_source_version.html
    version='${version}',

    description='French grammar checker',
85
86
87
88
89
90
91
92

93

94
95
96
97
98
99


100
101
102
103
104
105
106
107
108
109
    #     '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={
        'dictionary': ['_dictionaries/French.bdic'],

    },


    # 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'])],



    # To provide executable scripts, use entry points in preference to the
    # "scripts" keyword. Entry points provide cross-platform support and allow
    # pip to create the appropriate form of executable for the target platform.
    # entry_points={
    #     'console_scripts': [
    #         'sample=sample:main',
    #     ],
    # },
)







|
>

>






>
>










85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
    #     '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': ['_dictionaries/French.bdic', '*.txt'],
        '': ['*.py', '*.txt', '*.ini']
    },
    include_package_data=True,

    # 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'])],
    data_files=[('', ['cli.py', 'server.py', 'bottle.py', 'README.txt', 'license.txt', \
                      'server_options.fr.ini', 'server_options._global.ini'])],

    # To provide executable scripts, use entry points in preference to the
    # "scripts" keyword. Entry points provide cross-platform support and allow
    # pip to create the appropriate form of executable for the target platform.
    # entry_points={
    #     'console_scripts': [
    #         'sample=sample:main',
    #     ],
    # },
)