[DEBUG] correct the inclusion of many element
This commit is contained in:
parent
912171b33d
commit
9034d303e5
@ -1,2 +1,5 @@
|
|||||||
include README.rst
|
include README.rst
|
||||||
include bash-autocompletion/lutin
|
include bash-autocompletion/lutin
|
||||||
|
recursive-include lutin/builder
|
||||||
|
recursive-include lutin/system
|
||||||
|
recursive-include lutin/target
|
0
lutin/builder/__init__.py
Normal file
0
lutin/builder/__init__.py
Normal file
0
lutin/system/__init__.py
Normal file
0
lutin/system/__init__.py
Normal file
0
lutin/target/__init__.py
Normal file
0
lutin/target/__init__.py
Normal file
16
setup.py
16
setup.py
@ -7,18 +7,19 @@ def readme():
|
|||||||
|
|
||||||
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||||
setup(name='lutin',
|
setup(name='lutin',
|
||||||
version='0.5.8',
|
version='0.5.9',
|
||||||
description='Lutin generic builder',
|
description='Lutin generic builder',
|
||||||
long_description=readme(),
|
long_description=readme(),
|
||||||
url='http://github.com/HeeroYui/lutin',
|
url='http://github.com/HeeroYui/lutin',
|
||||||
author='Edouard DUPIN',
|
author='Edouard DUPIN',
|
||||||
author_email='yui.heero@gmail.com',
|
author_email='yui.heero@gmail.com',
|
||||||
license='APACHE-2',
|
license='APACHE-2',
|
||||||
packages=['lutin',
|
packages=['lutin'],
|
||||||
'lutin/builder',
|
package_data={
|
||||||
'lutin/system',
|
'lutin.builder': ['lutin/builder/*'],
|
||||||
'lutin/target'
|
'lutin.system': ['lutin/system/*'],
|
||||||
],
|
'lutin.target': ['lutin/target/*']
|
||||||
|
},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 3 - Alpha',
|
'Development Status :: 3 - Alpha',
|
||||||
'License :: OSI Approved :: Apache Software License',
|
'License :: OSI Approved :: Apache Software License',
|
||||||
@ -31,6 +32,9 @@ setup(name='lutin',
|
|||||||
data_file=[
|
data_file=[
|
||||||
('/etc/bash_completion.d', ['bash-autocompletion/lutin']),
|
('/etc/bash_completion.d', ['bash-autocompletion/lutin']),
|
||||||
],
|
],
|
||||||
|
install_requires=[
|
||||||
|
'PIL>=1.0.0'
|
||||||
|
],
|
||||||
zip_safe=False)
|
zip_safe=False)
|
||||||
|
|
||||||
#To developp: ./setup.py install/develop
|
#To developp: ./setup.py install/develop
|
||||||
|
Loading…
x
Reference in New Issue
Block a user