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.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
|
|
|
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
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': ['_dictionaries/French.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'])],
|
|
|
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'])],
|