58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
'Programming Language :: Python :: 3.6',
],
# What does your project relate to?
keywords='French grammar checker correcteur grammatical français',
# Scripts
scripts=['grammalecte-cli.py', 'grammalecte-server.py', 'grammalecte-server-options.fr.ini'],
# 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
|
|
|
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
'Programming Language :: Python :: 3.6',
],
# What does your project relate to?
keywords='French grammar checker correcteur grammatical français',
# Scripts
scripts=['grammalecte-cli.py', 'grammalecte-server.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
|